desktop selector + choice of desktop on laptop

This commit is contained in:
2026-06-21 21:56:38 -05:00
parent 2be586e2cc
commit 53062400cd
7 changed files with 74 additions and 1 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
];
}