mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
project-wide: nixdirfmt
This commit is contained in:
parent
e0764a44a4
commit
1ff53944f1
10 changed files with 35 additions and 49 deletions
|
|
@ -1,8 +1,14 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
katnet.public.udp.ranges = [ { from=60000; to=61000; }];
|
||||
katnet.private.udp.ranges = [ { from=60000; to=61000; }];
|
||||
katnet.public.udp.ranges = [{
|
||||
from = 60000;
|
||||
to = 61000;
|
||||
}];
|
||||
katnet.private.udp.ranges = [{
|
||||
from = 60000;
|
||||
to = 61000;
|
||||
}];
|
||||
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -4,10 +4,8 @@
|
|||
home-manager.users.kat = { imports = [ ./home.nix ]; };
|
||||
|
||||
deploy.profile.kat = true;
|
||||
|
||||
users.groups = {
|
||||
uinput = {};
|
||||
};
|
||||
|
||||
users.groups = { uinput = { }; };
|
||||
|
||||
users.users.kat = {
|
||||
uid = 1000;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
{ config, ... }:
|
||||
|
||||
{
|
||||
services.konawall = { enable = true; interval = "20m"; };
|
||||
services.konawall = {
|
||||
enable = true;
|
||||
interval = "20m";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,9 +17,7 @@ in {
|
|||
|
||||
home.packages = with pkgs; [ grim slurp wl-clipboard jq ];
|
||||
|
||||
services.i3gopher = {
|
||||
enable = true;
|
||||
};
|
||||
services.i3gopher = { enable = true; };
|
||||
|
||||
programs.zsh.profileExtra = ''
|
||||
# If running from tty1 start sway
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue