diff --git a/nixos/hosts/Rias/configuration.nix b/nixos/hosts/Rias/configuration.nix index c759c5a..f5c555f 100644 --- a/nixos/hosts/Rias/configuration.nix +++ b/nixos/hosts/Rias/configuration.nix @@ -5,10 +5,6 @@ ../../modules/bundle.nix ]; - disabledModules = [ - ./modules/xserver.nix - ]; - networking.hostName = "Rias"; time.timeZone = "Europe/Moscow"; diff --git a/nixos/modules/bundle.nix b/nixos/modules/bundle.nix index 6459836..29391ae 100644 --- a/nixos/modules/bundle.nix +++ b/nixos/modules/bundle.nix @@ -5,7 +5,6 @@ ./zram.nix ./env.nix ./user.nix - ./xserver.nix ./nm.nix ./virtmanager.nix ./hyprland.nix diff --git a/nixos/modules/xserver.nix b/nixos/modules/xserver.nix deleted file mode 100644 index 9011cc2..0000000 --- a/nixos/modules/xserver.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ - services.xserver = { - enable = true; - windowManager.herbstluftwm.enable = true; - - # displayManager = { - # autoLogin.enable = true; - # autoLogin.user = "amper"; - # lightdm.enable = true; - # }; - - layout = "us"; - xkbVariant = ""; - - libinput = { - enable = true; - mouse.accelProfile = "flat"; - touchpad.accelProfile = "flat"; - }; - - videoDrivers = [ "amdgpu" ]; - deviceSection = ''Option "TearFree" "True"''; - #displayManager.gdm.enable = true; - #desktopManager.gnome.enable = true; - }; -}