Compare commits

..

2 Commits

7 changed files with 76 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
{ ... }:
{
imports = [
./home.nix
./system.nix
];
}
+20
View File
@@ -0,0 +1,20 @@
{ pkgs, ... }:
{
wayland.windowManager.hyprland = {
enable = true;
settings = {
"$mod" = "SUPER";
bind = [
"$mod, Q, exec, ghostty"
"$mod, F, exec, brave"
];
};
};
home.sessionVariables = {
NIXOS_OZONE_WL = "1";
};
}
+22
View File
@@ -0,0 +1,22 @@
{ pkgs, ... }:
{
programs.hyprland.enable = true;
services.displayManager.sddm.enable = true;
xdg.portal = {
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];
};
security.polkit.enable = true;
environment.systemPackages = with pkgs; [
hyprland
hyprpicker
mpvpaper
quickshell
hyprpolkitagent
rofi
];
}
+9
View File
@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
services.desktopManager.plasma6.enable = true;
services.displayManager.sddm.enable = true;
xdg.portal.enable = true;
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-kde ];
}
+8
View File
@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
services.xserver.enable = true;
services.xserver.desktopManager.xfce.enable = true;
services.xserver.displayManager.lightdm.enable = true;
}
+6 -2
View File
@@ -6,10 +6,13 @@
./disko.nix
# Modules
../../modules/virtualization
../../modules/core
../../modules/networking
../../modules/development
../../modules/networking
../../modules/virtualization
## Desktop Environment
../../desktops/hyprland
];
boot = {
@@ -48,6 +51,7 @@
environment.systemPackages = with pkgs; [
tpm2-tools
brave
];
system.stateVersion = "26.05";
+2
View File
@@ -16,6 +16,8 @@
neovim
btop
unzip
mpv
wl-clipboard
];
nix.gc = {