nix machine / user configurations
at terra 638 B view raw
1{ 2 config, 3 pkgs, 4 inputs, 5 ... 6}: 7{ 8 imports = [ 9 ../wayland 10 ../swaylock 11 ../wlsunset 12 ../eww 13 ../foot 14 ../dunst 15 ../rofi 16 ./swayidle.nix 17 ./config.nix 18 inputs.hyprland.homeManagerModules.default 19 ]; 20 21 home.sessionVariables = { 22 GDK_SCALE = "2"; 23 QT_SCALE_FACTOR = "2"; 24 }; 25 26 home.packages = with pkgs; [ 27 wf-recorder 28 xorg.xprop 29 inputs.hyprland-contrib.packages.${pkgs.system}.grimblast 30 light 31 playerctl 32 wlogout 33 swaybg 34 mpvpaper 35 ]; 36 37 wayland.windowManager.hyprland = { 38 enable = true; 39 package = inputs.hyprland.packages.${pkgs.system}.hyprland; 40 }; 41}