mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat: niri, and so much more o.o
This commit is contained in:
parent
f61eca52be
commit
79bf49841b
61 changed files with 1412 additions and 1683 deletions
6
nixos/common/nh.nix
Normal file
6
nixos/common/nh.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, inputs, ... }: {
|
||||
programs.nh = {
|
||||
enable = true;
|
||||
package = inputs.nh.packages.${pkgs.system}.nh;
|
||||
};
|
||||
}
|
||||
|
|
@ -1,8 +1,4 @@
|
|||
{inputs, pkgs, ...}: {
|
||||
programs.nh = {
|
||||
enable = true;
|
||||
package = inputs.nh.packages.${pkgs.system}.nh;
|
||||
};
|
||||
{ pkgs, ...}: {
|
||||
nix = {
|
||||
gc = {
|
||||
automatic = true;
|
||||
|
|
@ -14,5 +10,9 @@
|
|||
"deploy"
|
||||
];
|
||||
};
|
||||
package = pkgs.lix;
|
||||
};
|
||||
system = {
|
||||
rebuild.enableNg = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
11
nixos/common/nixos-cli.nix
Normal file
11
nixos/common/nixos-cli.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
_: {
|
||||
services.nixos-cli = {
|
||||
enable = true;
|
||||
config = {
|
||||
use_nvd = true;
|
||||
apply = {
|
||||
use_nom = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue