Compare commits

..

3 commits

Author SHA1 Message Date
d050a39a50
blocky: add domains
All checks were successful
flake check / check (push) Successful in 3m46s
fmt check / check (push) Successful in 37s
2023-12-06 00:40:24 -05:00
b37ae4d476
modules: remove networking 2023-12-05 19:44:18 -05:00
d26a2de66e
wayland: switch to satty 2023-12-05 19:43:19 -05:00
6 changed files with 7 additions and 8 deletions

View file

@ -106,6 +106,7 @@
windowrulev2 = float, title:^(Cryptomator)$
windowrulev2 = float, title:^(RuneLite)$
windowrulev2 = float, title:^(Lutris)$
windowrulev2 = float, title:^(satty)$
windowrulev2 = move 850 360, title:^(RuneLite)$
windowrulev2 = size 830 600, title:^(RuneLite)$
windowrulev2 = fullscreen, title:^(cs2)$
@ -119,7 +120,7 @@
bind = $mainMod, R, exec, anyrun
bind = $mainMod, P, pseudo, # dwindle
bind = $mainMod, J, togglesplit, # dwindle
bind =, Print, exec, grim -g "$(slurp)" - | swappy -f -
bind =, Print, exec, grim -g "$(slurp)" - | satty -f - --fullscreen --output-filename ~/Pictures/screenshots/$(date '+%Y%m%d-%H:%M:%S').png
bind = $mainMod, left, movefocus, l
bind = $mainMod, right, movefocus, r
bind = $mainMod, up, movefocus, u

View file

@ -24,7 +24,7 @@ in {
glib
grim
slurp
swappy
satty
wl-clipboard
wlr-randr
swayidle

View file

@ -93,6 +93,7 @@
"dashboard.internal.flake.sh" = "192.168.1.36";
"udm.internal.flake.sh" = "192.168.1.1";
"pve.internal.flake.sh" = "192.168.1.37";
"pbs.internal.flake.sh" = "192.168.1.38";
# media
@ -103,6 +104,7 @@
"bazarr.internal.flake.sh" = "192.168.1.54";
"prowlarr.internal.flake.sh" = "192.168.1.54";
"stash.internal.flake.sh" = "192.168.1.36";
"nextcloud.internal.flake.sh" = "192.168.1.199";
# misc

View file

@ -8,7 +8,6 @@ name | description
`default` | used for commonly shared modules
`fonts` | font handling
`greetd` | login manager
`networking` | common network configuration
`nix` | common nix configuration
`openssh` | configures openssh options
`security` | stolen from [hlissner](https://github.com/hlissner)
@ -17,4 +16,4 @@ name | description
`system` | commonly shared system settings
`time` | force sets the time on all systems
`users` | defines all hosts users & groups
`virtualisation`| basic docker configuration
`virtualisation`| basic docker configuration

View file

@ -3,7 +3,6 @@
inputs.nh.nixosModules.default
./prometheus
./security.nix
./networking.nix
./users.nix
./nix.nix
./system.nix
@ -12,4 +11,5 @@
./sops.nix
./time.nix
];
services.tailscale.enable = true;
}

View file

@ -1,3 +0,0 @@
_: {
services.tailscale.enable = true;
}