added niri flake

This commit is contained in:
willifan 2024-12-29 14:30:24 +01:00
parent b9c0d470c3
commit ba25d03fae
5 changed files with 63 additions and 35 deletions

View file

@ -0,0 +1,8 @@
{ inputs, ... }:
{
nixpkgs.overlays = [ inputs.niri.overlays.niri ];
imports = [
./niri.nix
];
}

View file

@ -0,0 +1,11 @@
{ ... }:
{
home-manager.users.willifan = {
programs.niri = {
enable = true;
settings = {
outputs."eDP-1".scale = 1.6;
};
};
};
}