Merge branch 'flake' of https://git.atagen.co/atagen/nix into flake

This commit is contained in:
atagen 2023-05-18 16:58:19 +10:00
commit 5c3b5277e8
3 changed files with 161 additions and 0 deletions

View file

@ -128,4 +128,6 @@ bind=,XF86AudioStop,exec,playerctl stop
bind=,XF86AudioPlay,exec,playerctl play-pause
bind=,XF86AudioPrev,exec,playerctl previous
bind=,XF86AudioNext,exec,playerctl next
bind=,XF86MonBrightnessUp,exec,brightnessctl,s +10%
bind=,XF86MonBrightnessDown,exec,brightnessctl,s -10%

17
home/plank.nix Normal file
View file

@ -0,0 +1,17 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
./home.nix
];
home = {
username = "plank";
homeDirectory = "/home/plank";
};
}