aint gonna fuck with this for a while

This commit is contained in:
2021-04-24 08:37:16 +05:30
parent 7d3321fabc
commit c67dc7dd34
5 changed files with 21 additions and 6 deletions

View File

@@ -18,6 +18,8 @@
enable = true; enable = true;
package = pkgs.mariadb; package = pkgs.mariadb;
}; };
openssh.enable = true;
logmein-hamachi.enable = true;
}; };
# services.picom = { # services.picom = {
# enable = true; # enable = true;

View File

@@ -10,7 +10,7 @@
useDHCP = true; useDHCP = true;
ipv4.addresses = [ { ipv4.addresses = [ {
prefixLength = 24; prefixLength = 24;
address = "192.168.0.111"; address = "192.168.0.109";
} ]; } ];
}; };
}; };

View File

@@ -45,4 +45,11 @@
sxiv sxiv
mpv mpv
]; ];
programs.steam.enable = true;
nix = {
package = pkgs.nixUnstable;
extraOptions = ''
experimental-features = nix-command flakes
'';
};
} }

View File

@@ -28,9 +28,15 @@
}; };
}; };
nix.gc = { nix.gc = {
automatic = true; automatic = false;
dates = "20:15"; dates = "20:15";
}; };
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
programs.fish.enable = true; programs = {
fish.enable = true;
dconf.enable = true;
};
nixpkgs.config.allowBroken = true;
nix.extraOptions = ''experimental-features = nix-command flakes ca-references'';
} }