added pipe-operator, removed unnecessary default values
This commit is contained in:
parent
d6a754542a
commit
9a0e97dd02
2 changed files with 11 additions and 15 deletions
|
@ -5,7 +5,11 @@
|
|||
nix = {
|
||||
settings = {
|
||||
trusted-users = [ "@wheel" "root" ];
|
||||
experimental-features = lib.mkDefault [ "nix-command" "flakes" ];
|
||||
experimental-features = lib.mkDefault [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
"pipe-operators"
|
||||
];
|
||||
auto-optimise-store = true;
|
||||
};
|
||||
|
||||
|
@ -51,12 +55,8 @@
|
|||
polkit.enable = true;
|
||||
};
|
||||
|
||||
networking.firewall.enable = true;
|
||||
|
||||
time.timeZone = "America/Detroit";
|
||||
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
|
||||
programs = {
|
||||
git.enable = true;
|
||||
htop.enable = true;
|
||||
|
|
|
@ -5,7 +5,11 @@
|
|||
nix = {
|
||||
settings = {
|
||||
trusted-users = [ "@wheel" "root" ];
|
||||
experimental-features = lib.mkDefault [ "nix-command" "flakes" ];
|
||||
experimental-features = lib.mkDefault [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
"pipe-operators"
|
||||
];
|
||||
auto-optimise-store = true;
|
||||
};
|
||||
|
||||
|
@ -38,16 +42,9 @@
|
|||
polkit.enable = true;
|
||||
};
|
||||
|
||||
hardware.opengl = {
|
||||
driSupport = true;
|
||||
driSupport32Bit = true;
|
||||
};
|
||||
|
||||
networking.firewall.enable = true;
|
||||
|
||||
time.timeZone = "America/Detroit";
|
||||
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
hardware.graphics.enable32Bit = true;
|
||||
|
||||
programs = {
|
||||
git.enable = true;
|
||||
|
@ -62,7 +59,6 @@
|
|||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
rsync
|
||||
xorg.libX11
|
||||
xorg.xset
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue