nix: organized even further

This commit is contained in:
biscuit
2025-05-15 14:04:28 -05:00
parent 87f2adb3c9
commit 1b74cf48d0
4 changed files with 16 additions and 12 deletions
+2
View File
@@ -2,5 +2,7 @@
imports = [
../system/firefox/default.nix
../system/astal/default.nix
../system/hyprland/default.nix
../system/fonts/default.nix
];
}
-12
View File
@@ -65,7 +65,6 @@
zsh
p7zip
gcc
astal.hyprland
btop
libnotify
];
@@ -83,22 +82,11 @@
### ----------------------------------------
### DESKTOP START
services.xserver.displayManager.gdm.enable = true;
fonts.packages = with pkgs; [
nerd-fonts.fira-code
];
hardware = {
# pulseaudio.enable = true;
graphics.enable = true;
nvidia.modesetting.enable = false;
};
programs.hyprland = {
enable = true;
# package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
# portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
xwayland.enable = true;
};
### DESKTOP END
### ----------------------------------------
+5
View File
@@ -0,0 +1,5 @@
{ ... }: {
fonts.packages = with pkgs; [
nerd-fonts.fira-code
];
}
+9
View File
@@ -0,0 +1,9 @@
{ ... }: {
programs.hyprland = {
enable = true;
# package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
# portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
xwayland.enable = true;
};
}