Compare commits

..

2 Commits

Author SHA1 Message Date
Alexandre
1f8fb0c53d Added cache substitution and reenabled custom kernel 2026-03-23 17:50:37 +01:00
Alexandre
09d413f6c0 Fixed warnings for framework host 2026-03-22 21:47:42 +01:00
4 changed files with 15 additions and 8 deletions

View File

@ -62,7 +62,9 @@
}; };
zsh = { zsh = {
enable = true; enable = true;
enableAutosuggestions = true; autosuggestions = {
enable = true;
};
}; };
}; };

View File

@ -21,15 +21,16 @@
"https://cache.nixos.org" "https://cache.nixos.org"
"https://nix-community.cachix.org" "https://nix-community.cachix.org"
"https://hyprland.cachix.org" "https://hyprland.cachix.org"
"https://nix-citizen.cachix.org" "https://nix-citizen.cachix.org"
"https://attic.xuyh0120.win/lantian"
]; ];
trusted-public-keys = [ trusted-public-keys = [
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
"nix-citizen.cachix.org-1:lPMkWc2X8XD4/7YPEEwXKKBg+SVbYTVrAaLA2wQTKCo=" "nix-citizen.cachix.org-1:lPMkWc2X8XD4/7YPEEwXKKBg+SVbYTVrAaLA2wQTKCo="
]; "lantian:EeAUQ+W+6r7EtwnmYjeVwx5kOGEBpjlBfPlzGlTNvHc="
];
}; };
}; };

View File

@ -153,7 +153,7 @@
enable = true; enable = true;
}; };
ts-ls = { ts_ls = {
enable = true; enable = true;
}; };

View File

@ -1,9 +1,9 @@
{ pkgs, ...}: { pkgs, ...}:
{ {
services.xserver = { services = {
xserver = {
displayManager = { displayManager = {
defaultSession = "hyprland";
lightdm = { lightdm = {
enable = true; enable = true;
greeters = { greeters = {
@ -14,6 +14,10 @@
}; };
}; };
enable = true; enable = true;
};
displayManager = {
defaultSession = "hyprland";
};
}; };
# EOF # EOF
} }