Compare commits
No commits in common. "d050a39a5026c6cd87ecc6140c62b4c85d0359d0" and "90ea52487604cb200ea301f834ece4b45eb7c099" have entirely different histories.
d050a39a50
...
90ea524876
6 changed files with 8 additions and 7 deletions
|
@ -106,7 +106,6 @@
|
||||||
windowrulev2 = float, title:^(Cryptomator)$
|
windowrulev2 = float, title:^(Cryptomator)$
|
||||||
windowrulev2 = float, title:^(RuneLite)$
|
windowrulev2 = float, title:^(RuneLite)$
|
||||||
windowrulev2 = float, title:^(Lutris)$
|
windowrulev2 = float, title:^(Lutris)$
|
||||||
windowrulev2 = float, title:^(satty)$
|
|
||||||
windowrulev2 = move 850 360, title:^(RuneLite)$
|
windowrulev2 = move 850 360, title:^(RuneLite)$
|
||||||
windowrulev2 = size 830 600, title:^(RuneLite)$
|
windowrulev2 = size 830 600, title:^(RuneLite)$
|
||||||
windowrulev2 = fullscreen, title:^(cs2)$
|
windowrulev2 = fullscreen, title:^(cs2)$
|
||||||
|
@ -120,7 +119,7 @@
|
||||||
bind = $mainMod, R, exec, anyrun
|
bind = $mainMod, R, exec, anyrun
|
||||||
bind = $mainMod, P, pseudo, # dwindle
|
bind = $mainMod, P, pseudo, # dwindle
|
||||||
bind = $mainMod, J, togglesplit, # dwindle
|
bind = $mainMod, J, togglesplit, # dwindle
|
||||||
bind =, Print, exec, grim -g "$(slurp)" - | satty -f - --fullscreen --output-filename ~/Pictures/screenshots/$(date '+%Y%m%d-%H:%M:%S').png
|
bind =, Print, exec, grim -g "$(slurp)" - | swappy -f -
|
||||||
bind = $mainMod, left, movefocus, l
|
bind = $mainMod, left, movefocus, l
|
||||||
bind = $mainMod, right, movefocus, r
|
bind = $mainMod, right, movefocus, r
|
||||||
bind = $mainMod, up, movefocus, u
|
bind = $mainMod, up, movefocus, u
|
||||||
|
|
|
@ -24,7 +24,7 @@ in {
|
||||||
glib
|
glib
|
||||||
grim
|
grim
|
||||||
slurp
|
slurp
|
||||||
satty
|
swappy
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
wlr-randr
|
wlr-randr
|
||||||
swayidle
|
swayidle
|
||||||
|
|
|
@ -93,7 +93,6 @@
|
||||||
"dashboard.internal.flake.sh" = "192.168.1.36";
|
"dashboard.internal.flake.sh" = "192.168.1.36";
|
||||||
"udm.internal.flake.sh" = "192.168.1.1";
|
"udm.internal.flake.sh" = "192.168.1.1";
|
||||||
"pve.internal.flake.sh" = "192.168.1.37";
|
"pve.internal.flake.sh" = "192.168.1.37";
|
||||||
"pbs.internal.flake.sh" = "192.168.1.38";
|
|
||||||
|
|
||||||
# media
|
# media
|
||||||
|
|
||||||
|
@ -104,7 +103,6 @@
|
||||||
"bazarr.internal.flake.sh" = "192.168.1.54";
|
"bazarr.internal.flake.sh" = "192.168.1.54";
|
||||||
"prowlarr.internal.flake.sh" = "192.168.1.54";
|
"prowlarr.internal.flake.sh" = "192.168.1.54";
|
||||||
"stash.internal.flake.sh" = "192.168.1.36";
|
"stash.internal.flake.sh" = "192.168.1.36";
|
||||||
"nextcloud.internal.flake.sh" = "192.168.1.199";
|
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,7 @@ name | description
|
||||||
`default` | used for commonly shared modules
|
`default` | used for commonly shared modules
|
||||||
`fonts` | font handling
|
`fonts` | font handling
|
||||||
`greetd` | login manager
|
`greetd` | login manager
|
||||||
|
`networking` | common network configuration
|
||||||
`nix` | common nix configuration
|
`nix` | common nix configuration
|
||||||
`openssh` | configures openssh options
|
`openssh` | configures openssh options
|
||||||
`security` | stolen from [hlissner](https://github.com/hlissner)
|
`security` | stolen from [hlissner](https://github.com/hlissner)
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
inputs.nh.nixosModules.default
|
inputs.nh.nixosModules.default
|
||||||
./prometheus
|
./prometheus
|
||||||
./security.nix
|
./security.nix
|
||||||
|
./networking.nix
|
||||||
./users.nix
|
./users.nix
|
||||||
./nix.nix
|
./nix.nix
|
||||||
./system.nix
|
./system.nix
|
||||||
|
@ -11,5 +12,4 @@
|
||||||
./sops.nix
|
./sops.nix
|
||||||
./time.nix
|
./time.nix
|
||||||
];
|
];
|
||||||
services.tailscale.enable = true;
|
|
||||||
}
|
}
|
||||||
|
|
3
modules/networking.nix
Normal file
3
modules/networking.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
_: {
|
||||||
|
services.tailscale.enable = true;
|
||||||
|
}
|
Loading…
Reference in a new issue