diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2024-03-11 22:16:24 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-03-11 22:16:24 +0530 | 
| commit | 55542f1ce3f313419ebe6a7fa9a7629898e6ce2e (patch) | |
| tree | aec78781c3f64eed7dce21e1aadb0342fae6bacd /machines/x | |
| parent | b71f27a2179cdfa58492e2696246d3d8e55f9844 (diff) | |
dwm
Diffstat (limited to 'machines/x')
| -rw-r--r-- | machines/x/configuration.nix | 19 | ||||
| -rw-r--r-- | machines/x/home.nix | 6 | 
2 files changed, 21 insertions, 4 deletions
| diff --git a/machines/x/configuration.nix b/machines/x/configuration.nix index f3e60e4..46aa51d 100644 --- a/machines/x/configuration.nix +++ b/machines/x/configuration.nix @@ -42,6 +42,25 @@    home-manager.users.compromyse = import ./home.nix; +  environment.systemPackages = with pkgs; [ +    xorg.xorgserver +    xorg.xf86inputevdev +    xorg.xf86inputsynaptics +    xorg.xf86inputlibinput +  ]; + +  services.xserver.enable = true; +  services.xserver.displayManager.startx.enable = true; +  services.xserver.windowManager.dwm.enable = true; +  services.xserver.windowManager.dwm.package = pkgs.dwm.overrideAttrs { +    src = pkgs.fetchFromGitHub { +      owner = "compromyse"; +      repo = "dwm"; +      rev = "master"; +      hash = "sha256-bYj9u0EBfpTcpJHzeaCp3mm6tSy9dz40y+X15R0WbUs="; +    }; +  }; +    networking.extraHosts =    ''      127.0.0.1 download.labsmartlis.local diff --git a/machines/x/home.nix b/machines/x/home.nix index c0ac523..c46067e 100644 --- a/machines/x/home.nix +++ b/machines/x/home.nix @@ -35,7 +35,6 @@ in {      pamixer      wbg -    wl-clipboard      sway-launcher-desktop @@ -51,9 +50,8 @@ in {      "git"      "nvim"      "alacritty" -    "dwl.nix" -    "way-displays" -    "swaylock" +    "dwm.nix" +    "rofi"      "dunst"    ]); | 
