Niri configuration

This commit is contained in:
nest 2025-12-12 18:55:14 +00:00
parent b8d8edc4dc
commit 017ead2640
3 changed files with 24 additions and 6 deletions

23
flake.lock generated
View file

@ -35,10 +35,31 @@
"type": "indirect" "type": "indirect"
} }
}, },
"noctalia": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1765485871,
"narHash": "sha256-dv1Rqh4H/zClAM1LhFt70a5Z0OkOsT9q45zlVqFv/No=",
"owner": "noctalia-dev",
"repo": "noctalia-shell",
"rev": "2d551b7c9475c86a0ccef0447cfc830390d301bb",
"type": "github"
},
"original": {
"owner": "noctalia-dev",
"repo": "noctalia-shell",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"home-manager": "home-manager", "home-manager": "home-manager",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs",
"noctalia": "noctalia"
} }
} }
}, },

View file

@ -220,11 +220,8 @@ layout {
// which may be more convenient to use. // which may be more convenient to use.
// See the binds section below for more spawn examples. // See the binds section below for more spawn examples.
// This line starts waybar, a commonly used bar for Wayland compositors.
spawn-at-startup "waybar"
// To run a shell command (with variables, pipes, etc.), use spawn-sh-at-startup: // To run a shell command (with variables, pipes, etc.), use spawn-sh-at-startup:
// spawn-sh-at-startup "qs -c ~/source/qs/MyAwesomeShell" spawn-sh-at-startup "qs -c ~/.config/quickshell/noctalia-shell/"
hotkey-overlay { hotkey-overlay {
// Uncomment this line to disable the "Important Hotkeys" pop-up at startup. // Uncomment this line to disable the "Important Hotkeys" pop-up at startup.

View file

@ -28,7 +28,7 @@
shellAliases = { shellAliases = {
ll = "ls -la"; ll = "ls -la";
update = "sudo nixos-rebuild switch --flake $NIX_FLAKE_PATH"; update = "sudo nixos-rebuild switch --upgrade-all --flake $NIX_FLAKE_PATH";
}; };
}; };