add niri, but keep it disabled
This commit is contained in:
parent
18eacb26dc
commit
7d9d63c02b
3 changed files with 13 additions and 1 deletions
|
@ -24,6 +24,9 @@
|
|||
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0-rc1.tar.gz";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
niri = {
|
||||
url = "github:sodiboo/niri-flake";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = {
|
||||
|
@ -34,6 +37,7 @@
|
|||
sops-nix,
|
||||
stylix,
|
||||
lix-module,
|
||||
niri,
|
||||
...
|
||||
} @ inputs: let
|
||||
inherit (self) outputs;
|
||||
|
@ -47,7 +51,8 @@
|
|||
modules = [
|
||||
./hosts/cube.nix
|
||||
lix-module.nixosModules.default
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
sops-nix.nixosModules.sops
|
||||
niri.nixosModules.niri
|
||||
];
|
||||
};
|
||||
muhhStar = lib.nixosSystem {
|
||||
|
@ -71,6 +76,7 @@
|
|||
inputs.nixvim.homeManagerModules.nixvim
|
||||
inputs.sops-nix.homeManagerModules.sops
|
||||
inputs.stylix.homeManagerModules.stylix
|
||||
inputs.niri.homeModules.niri
|
||||
./home.nix
|
||||
];
|
||||
};
|
||||
|
|
5
home.nix
5
home.nix
|
@ -22,6 +22,7 @@
|
|||
_1password
|
||||
_1password-gui
|
||||
atkinson-hyperlegible
|
||||
alacritty
|
||||
brightnessctl
|
||||
curl
|
||||
ddcutil
|
||||
|
@ -29,6 +30,7 @@
|
|||
dog
|
||||
fd
|
||||
ffmpegthumbnailer
|
||||
fuzzel
|
||||
git
|
||||
htop
|
||||
httpie
|
||||
|
@ -242,6 +244,9 @@
|
|||
vimKeys = true;
|
||||
sidebar.enable = true;
|
||||
};
|
||||
niri = {
|
||||
enable = false;
|
||||
};
|
||||
nixvim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
|
|
|
@ -147,6 +147,7 @@
|
|||
enable = true;
|
||||
brightnessKeys.enable = true;
|
||||
};
|
||||
# niri.enable = true;
|
||||
sway.enable = true;
|
||||
};
|
||||
virtualisation = {
|
||||
|
|
Loading…
Reference in a new issue