diff --git a/home/alex/home.nix b/home/alex/home.nix index d856d60..4e6caea 100644 --- a/home/alex/home.nix +++ b/home/alex/home.nix @@ -4,7 +4,6 @@ pkgs, ... }: - { imports = [ ./cli.nix @@ -14,6 +13,7 @@ ./programs/jitsi-meet ./programs/simplex-chat ./programs/zathura + ./programs/autorandr ./services/polybar ./services/dunst ./services/udiskie diff --git a/home/alex/programs/autorandr/default.nix b/home/alex/programs/autorandr/default.nix new file mode 100644 index 0000000..2ef4391 --- /dev/null +++ b/home/alex/programs/autorandr/default.nix @@ -0,0 +1,12 @@ +{ + config, + lib, + pkgs, + ... +}: + +{ + config.programs.autorandr = { + enable = true; + }; +}