summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-11-13 21:44:24 +0100
committeradikro <adikro@disroot.org>2025-11-13 21:44:24 +0100
commit97e4587c34fc860dcad69d6f7b1c60dbc798e566 (patch)
treedd1aa5bc6ba55b87cf3d84e9e3396cce42a2a210 /hosts
parentb48b636aaa22b29000ca686dfc0568cfeb7c2af9 (diff)
modularized WM configuration, added niri and dwl as window managers and installed some utilities
Diffstat (limited to 'hosts')
-rw-r--r--hosts/desktop/configuration.nix16
1 files changed, 11 insertions, 5 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix
index a07a028..47ac758 100644
--- a/hosts/desktop/configuration.nix
+++ b/hosts/desktop/configuration.nix
@@ -13,6 +13,9 @@
../../modules/scx.nix
../../modules/tor.nix
../../modules/disko.nix
+ ../../modules/hyprland.nix
+ ../../modules/niri.nix
+ ../../modules/dwl.nix
inputs.home-manager.nixosModules.home-manager
inputs.chaotic.nixosModules.default
];
@@ -57,12 +60,9 @@ hardware.cpu.amd.updateMicrocode = true;
services.xserver.videoDrivers = [ "amdgpu" ];
hardware.sensor.iio.enable = true;
services.lact.enable = true;
-#environment.variables.AMD_VULKAN_ICD = "RADV";
+environment.variables.AMD_VULKAN_ICD = "RADV";
hardware.amdgpu.initrd.enable = true;
-programs.hyprland.enable = true;
-programs.hyprland.package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
-
nix.settings = {
trusted-users = [ "root" "adam" ];
experimental-features = [ "nix-command" "flakes" ];
@@ -120,6 +120,12 @@ programs.fish.enable = true;
};
environment.systemPackages = with pkgs; [
+ swaybg
+ swaylock-effects
+ swayidle
+ fuzzel
+ bemenu
+
wineWowPackages.waylandFull
winetricks
vim
@@ -146,7 +152,7 @@ programs.fish.enable = true;
];
fonts.packages = with pkgs; [
- nerd-fonts.jetbrains-mono
+ nerd-fonts.jetbrains-mono
];
system.stateVersion = "25.05";