Skip to content

Commit

Permalink
Fix nix check warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
kurnevsky committed Dec 31, 2024
1 parent c4b9fac commit f3ea3c0
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions machines/acer/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{
boot = {
cleanTmpDir = true;
tmp.cleanOnBoot = true;
kernelPackages = pkgs.linuxPackages_latest;
kernel.sysctl."kernel.sysrq" = 1;
kernelPatches = [
Expand Down Expand Up @@ -58,7 +58,7 @@
xorg.xmodmap
];

fonts.fonts = with pkgs; [
fonts.packages = with pkgs; [
nerd-fonts.hack
noto-fonts
noto-fonts-color-emoji
Expand Down Expand Up @@ -110,26 +110,26 @@
server = "i.kurnevsky.net";
passwordFile = "/secrets/iodine";
};
xserver = {
enable = true;
videoDrivers = [ "modesetting" ];
displayManager = {
defaultSession = "plasma";
autoLogin = {
enable = true;
user = "parents";
};
sddm = {
enable = true;
autoNumlock = true;
};
desktopManager.plasma6.enable = true;
displayManager = {
defaultSession = "plasma";
autoLogin = {
enable = true;
user = "parents";
};
desktopManager.plasma6.enable = true;
libinput = {
sddm = {
enable = true;
touchpad.disableWhileTyping = true;
autoNumlock = true;
};
};
libinput = {
enable = true;
touchpad.disableWhileTyping = true;
};
xserver = {
enable = true;
videoDrivers = [ "modesetting" ];
};
};

security = {
Expand Down Expand Up @@ -166,7 +166,7 @@
uid = 1001;
isNormalUser = true;
shell = pkgs.zsh;
passwordFile = "/secrets/parents";
hashedPasswordFile = "/secrets/parents";
extraGroups = [
"audio"
"video"
Expand Down

0 comments on commit f3ea3c0

Please sign in to comment.