Skip to content

Commit

Permalink
add tools to get information about the graphic stack
Browse files Browse the repository at this point in the history
  • Loading branch information
Keksgesicht committed Nov 1, 2023
1 parent 37c3b92 commit 13e23a4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
26 changes: 16 additions & 10 deletions desktop/kde-plasma.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# https://nixos.wiki/wiki/KDE

{ config, pkgs, ...}:

{
Expand Down Expand Up @@ -39,15 +38,22 @@
plasma-browser-integration
];

users.users."keks".packages = with pkgs.libsForQt5; [
kate
# use digital clock with PIM plugin
akonadi-calendar
kdepim-addons
merkuro
# security stuff
ksshaskpass
];
users.users."keks" = {
packages = with pkgs.libsForQt5; with pkgs; [
kate
# use digital clock with PIM plugin
akonadi-calendar
kdepim-addons
merkuro
# security stuff
ksshaskpass
# graphics info
clinfo
glxinfo
vulkan-tools
wayland-utils
];
};

systemd.services = {
/*
Expand Down
4 changes: 2 additions & 2 deletions desktop/user-keks.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
# Define a user account.
# Don't forget to set a password with ‘passwd’.
users.users.keks = {
users.users."keks" = {
isNormalUser = true;
description = "Jan B.";
shell = pkgs.zsh;
Expand All @@ -14,7 +14,7 @@
"wheel"
];
};
users.groups.keks = {
users.groups."keks" = {
gid = 1000;
};
}

0 comments on commit 13e23a4

Please sign in to comment.