mirror of
https://github.com/Superredstone/nixos.git
synced 2026-06-17 15:24:39 +02:00
19 lines
303 B
Nix
19 lines
303 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.noctalia.homeModules.default
|
|
];
|
|
|
|
home.file = {
|
|
"niri-config" = {
|
|
source = ../assets/niri.kdl;
|
|
target = ".config/niri/config.kdl";
|
|
};
|
|
};
|
|
|
|
programs.noctalia-shell = {
|
|
enable = true;
|
|
settings = ../assets/noctalia.json;
|
|
};
|
|
}
|