Compare commits

..

No commits in common. "1f8fb0c53d99e30e0097ec748acf6d640dfd058a" and "03c50a85045b2ba0f1f4e75eaf420d504e39d977" have entirely different histories.

4 changed files with 8 additions and 15 deletions

View File

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

View File

@ -21,16 +21,15 @@
"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 = { services.xserver = {
xserver = {
displayManager = { displayManager = {
defaultSession = "hyprland";
lightdm = { lightdm = {
enable = true; enable = true;
greeters = { greeters = {
@ -14,10 +14,6 @@
}; };
}; };
enable = true; enable = true;
};
displayManager = {
defaultSession = "hyprland";
};
}; };
# EOF # EOF
} }