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";
|
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0-rc1.tar.gz";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
niri = {
|
||||||
|
url = "github:sodiboo/niri-flake";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = {
|
||||||
|
@ -34,6 +37,7 @@
|
||||||
sops-nix,
|
sops-nix,
|
||||||
stylix,
|
stylix,
|
||||||
lix-module,
|
lix-module,
|
||||||
|
niri,
|
||||||
...
|
...
|
||||||
} @ inputs: let
|
} @ inputs: let
|
||||||
inherit (self) outputs;
|
inherit (self) outputs;
|
||||||
|
@ -47,7 +51,8 @@
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/cube.nix
|
./hosts/cube.nix
|
||||||
lix-module.nixosModules.default
|
lix-module.nixosModules.default
|
||||||
inputs.sops-nix.nixosModules.sops
|
sops-nix.nixosModules.sops
|
||||||
|
niri.nixosModules.niri
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
muhhStar = lib.nixosSystem {
|
muhhStar = lib.nixosSystem {
|
||||||
|
@ -71,6 +76,7 @@
|
||||||
inputs.nixvim.homeManagerModules.nixvim
|
inputs.nixvim.homeManagerModules.nixvim
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
inputs.stylix.homeManagerModules.stylix
|
inputs.stylix.homeManagerModules.stylix
|
||||||
|
inputs.niri.homeModules.niri
|
||||||
./home.nix
|
./home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
5
home.nix
5
home.nix
|
@ -22,6 +22,7 @@
|
||||||
_1password
|
_1password
|
||||||
_1password-gui
|
_1password-gui
|
||||||
atkinson-hyperlegible
|
atkinson-hyperlegible
|
||||||
|
alacritty
|
||||||
brightnessctl
|
brightnessctl
|
||||||
curl
|
curl
|
||||||
ddcutil
|
ddcutil
|
||||||
|
@ -29,6 +30,7 @@
|
||||||
dog
|
dog
|
||||||
fd
|
fd
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
|
fuzzel
|
||||||
git
|
git
|
||||||
htop
|
htop
|
||||||
httpie
|
httpie
|
||||||
|
@ -242,6 +244,9 @@
|
||||||
vimKeys = true;
|
vimKeys = true;
|
||||||
sidebar.enable = true;
|
sidebar.enable = true;
|
||||||
};
|
};
|
||||||
|
niri = {
|
||||||
|
enable = false;
|
||||||
|
};
|
||||||
nixvim = {
|
nixvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
defaultEditor = true;
|
||||||
|
|
|
@ -147,6 +147,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
brightnessKeys.enable = true;
|
brightnessKeys.enable = true;
|
||||||
};
|
};
|
||||||
|
# niri.enable = true;
|
||||||
sway.enable = true;
|
sway.enable = true;
|
||||||
};
|
};
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
|
|
Loading…
Reference in a new issue