Compare commits

...

2 Commits

Author SHA1 Message Date
kalle 693057fd48 Fix tf2 in steam 2024-03-06 10:05:22 +01:00
kalle 9c21446c56 Add user to dialout group 2024-03-06 10:05:22 +01:00
1 changed files with 5 additions and 1 deletions

View File

@ -79,7 +79,7 @@
users.users.kalle = { users.users.kalle = {
isNormalUser = true; isNormalUser = true;
group = "kalle"; group = "kalle";
extraGroups = [ "wheel" ]; # Enable sudo for the user. extraGroups = [ "wheel" "dialout" ]; # Enable sudo for the user.
}; };
users.groups.kalle.gid = 1000; users.groups.kalle.gid = 1000;
@ -91,6 +91,7 @@
slurp # Some for this one slurp # Some for this one
gamescope gamescope
pkgsi686Linux.gperftools # Needed for tf2
]; ];
fonts = { fonts = {
@ -131,6 +132,9 @@
libkrb5 libkrb5
keyutils keyutils
]; ];
extraLibraries = pkgs: with pkgs; [
gperftools # Needed for tf2 to work
];
}; };
}; };