mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
Added lightDM
This commit is contained in:
parent
5b9bc6853c
commit
30fda688c0
@ -11,5 +11,6 @@ in
|
||||
modules.common.ssh
|
||||
modules.nixos.bootloader
|
||||
modules.common.environment
|
||||
modules.nixos.desktop.lightDM
|
||||
];
|
||||
}
|
||||
|
||||
@ -1,7 +1,5 @@
|
||||
{
|
||||
common = {
|
||||
home = ../hosts/common/home.nix;
|
||||
module = ../hosts/common/modules.nix;
|
||||
ai = ./common/ai.nix;
|
||||
direnv = ./common/direnv.nix;
|
||||
environment = ./common/environment.nix;
|
||||
@ -15,27 +13,31 @@
|
||||
hm = {
|
||||
hyprland = ./home-manager/Hyprland/hyprland.nix;
|
||||
scripts = ./home-manager/Hyprland/scripts.nix;
|
||||
nvim = ./home-manager/nvim.nix;
|
||||
shell = ./home-manager/shell.nix;
|
||||
spicetify = ./home-manager/spicetify.nix;
|
||||
zed = ./home-manager/zed.nix;
|
||||
zen = ./home-manager/zen.nix;
|
||||
nvim = ./home-manager/nvim.nix;
|
||||
};
|
||||
|
||||
nixos = {
|
||||
desktop = {
|
||||
lightDM = ./nixos/desktop/lightDM.nix;
|
||||
xfce = ./nixos/desktop/xfce.nix;
|
||||
};
|
||||
gaming = {
|
||||
nvidia = ./nixos/gaming/nvidia.nix;
|
||||
amd = ./nixos/gaming/amd.nix;
|
||||
nvidia = ./nixos/gaming/nvidia.nix;
|
||||
starCitizen = ./nixos/gaming/starCitizen.nix;
|
||||
steam = ./nixos/gaming/steam.nix;
|
||||
vr = ./nixos/gaming/vr.nix;
|
||||
};
|
||||
|
||||
bootloader = ./nixos/bootloader.nix;
|
||||
locale = ./nixos/locale.nix;
|
||||
secrets = ./nixos/secrets.nix;
|
||||
swap = ./nixos/swap.nix;
|
||||
wireless = ./nixos/wireless.nix;
|
||||
xfce = ./nixos/xfce.nix;
|
||||
};
|
||||
|
||||
macos = {
|
||||
|
||||
17
modules/nixos/desktop/lightDM.nix
Normal file
17
modules/nixos/desktop/lightDM.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ pkgs, ...}:
|
||||
|
||||
{
|
||||
services.xserver.displayManager = {
|
||||
defaultSession = "hyprland";
|
||||
lightdm = {
|
||||
enable = true;
|
||||
greeters = {
|
||||
slick = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
# EOF
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user