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 = [ imports = [
../system/firefox/default.nix ../system/firefox/default.nix
../system/astal/default.nix ../system/astal/default.nix
../system/hyprland/default.nix
../system/fonts/default.nix
]; ];
} }
-12
View File
@@ -65,7 +65,6 @@
zsh zsh
p7zip p7zip
gcc gcc
astal.hyprland
btop btop
libnotify libnotify
]; ];
@@ -83,22 +82,11 @@
### ---------------------------------------- ### ----------------------------------------
### DESKTOP START ### DESKTOP START
services.xserver.displayManager.gdm.enable = true; services.xserver.displayManager.gdm.enable = true;
fonts.packages = with pkgs; [
nerd-fonts.fira-code
];
hardware = { hardware = {
# pulseaudio.enable = true; # pulseaudio.enable = true;
graphics.enable = true; graphics.enable = true;
nvidia.modesetting.enable = false; 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 ### 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;
};
}