Add Noctalia with defaults

This commit is contained in:
KnightArtorias 2025-12-11 23:46:49 +00:00
parent 658543f820
commit b8d8edc4dc
3 changed files with 17 additions and 0 deletions

View file

@ -8,6 +8,11 @@
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
noctalia = {
url = "github:noctalia-dev/noctalia-shell";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, ... }@inputs:

View file

@ -6,5 +6,6 @@
./swayidle.nix
./quickshell.nix
./fuzzel.nix
./noctalia.nix
];
}

View file

@ -0,0 +1,11 @@
{ pkgs, inputs, ... }:
{
imports = [
inputs.noctalia.homeModules.default
];
programs.noctalia-shell = {
enable = true;
};
}