diff --git a/modules/README.md b/modules/README.md index 71b579a..388688f 100644 --- a/modules/README.md +++ b/modules/README.md @@ -7,12 +7,10 @@ name | description `prometheus` | has default prometheus config for all hosts, along with exporters for select hosts `default` | used for commonly shared modules `fonts` | font handling -`greetd` | login manager `nix` | common nix configuration `openssh` | configures openssh options `security` | stolen from [hlissner](https://github.com/hlissner) `sops` | configures sops-nix -`swayidle` | idle manager daemon `system` | commonly shared system settings `time` | force sets the time on all systems `users` | defines all hosts users & groups diff --git a/modules/greetd.nix b/modules/greetd.nix deleted file mode 100644 index 3dd2144..0000000 --- a/modules/greetd.nix +++ /dev/null @@ -1,12 +0,0 @@ -_: { - services.greetd = { - enable = true; - settings = rec { - initial_session = { - command = "Hyprland"; - user = "notoh"; - }; - default_session = initial_session; - }; - }; -} diff --git a/modules/swayidle.nix b/modules/swayidle.nix deleted file mode 100644 index e30ebda..0000000 --- a/modules/swayidle.nix +++ /dev/null @@ -1,13 +0,0 @@ -_: { - home.file.".local/bin/lock" = { - executable = true; - text = '' - swayidle -w \ - timeout 500 'swaylock -f --image ~/Pictures/wallpapers/mumei.png --clock --grace 5 --ring-color f5c2e7 --inside-color 1e1e2e --line-color 11111b' \ - timeout 600 'hyprctl dispatch dpms off' \ - resume 'hyprctl dispatch dpms on' \ - before-sleep 'swaylock -f --image ~/Picture/wallpapers/mumei.png --clock --ring-color f5c2e7 --inside-color 1e1e2e --line-color 11111b' \ - after-resume 'ironbar reload' - ''; - }; -}