added niri flake
This commit is contained in:
parent
b9c0d470c3
commit
ba25d03fae
5 changed files with 63 additions and 35 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, config, pkgs, attrs, system, ... }:
|
||||
{ lib, config, pkgs, inputs, system, ... }:
|
||||
lib.mkIf config.desktop.enable {
|
||||
|
||||
environment.systemPackages =
|
||||
|
@ -33,7 +33,7 @@ lib.mkIf config.desktop.enable {
|
|||
])
|
||||
++
|
||||
[
|
||||
attrs.zen.packages.${system}.specific
|
||||
inputs.zen.packages.${system}.specific
|
||||
];
|
||||
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
imports = [
|
||||
./hyprland
|
||||
./niri
|
||||
|
||||
./options.nix
|
||||
./kitty.nix
|
||||
|
|
8
modules/default/home-manager/desktop/niri/default.nix
Normal file
8
modules/default/home-manager/desktop/niri/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ inputs, ... }:
|
||||
{
|
||||
nixpkgs.overlays = [ inputs.niri.overlays.niri ];
|
||||
|
||||
imports = [
|
||||
./niri.nix
|
||||
];
|
||||
}
|
11
modules/default/home-manager/desktop/niri/niri.nix
Normal file
11
modules/default/home-manager/desktop/niri/niri.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ ... }:
|
||||
{
|
||||
home-manager.users.willifan = {
|
||||
programs.niri = {
|
||||
enable = true;
|
||||
settings = {
|
||||
outputs."eDP-1".scale = 1.6;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue