diff --git a/flake.lock b/flake.lock index af3d867..efd795a 100644 --- a/flake.lock +++ b/flake.lock @@ -35,10 +35,31 @@ "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": { "inputs": { "home-manager": "home-manager", - "nixpkgs": "nixpkgs" + "nixpkgs": "nixpkgs", + "noctalia": "noctalia" } } }, diff --git a/hosts/physical/crow/host-configs/niri/config.kdl b/hosts/physical/crow/host-configs/niri/config.kdl index 01fad56..cd010d2 100644 --- a/hosts/physical/crow/host-configs/niri/config.kdl +++ b/hosts/physical/crow/host-configs/niri/config.kdl @@ -220,11 +220,8 @@ layout { // which may be more convenient to use. // 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: -// spawn-sh-at-startup "qs -c ~/source/qs/MyAwesomeShell" +spawn-sh-at-startup "qs -c ~/.config/quickshell/noctalia-shell/" hotkey-overlay { // Uncomment this line to disable the "Important Hotkeys" pop-up at startup. diff --git a/nixos/modules/zsh.nix b/nixos/modules/zsh.nix index 8060471..63ef5dc 100644 --- a/nixos/modules/zsh.nix +++ b/nixos/modules/zsh.nix @@ -28,7 +28,7 @@ shellAliases = { ll = "ls -la"; - update = "sudo nixos-rebuild switch --flake $NIX_FLAKE_PATH"; + update = "sudo nixos-rebuild switch --upgrade-all --flake $NIX_FLAKE_PATH"; }; };