diff options
author | tom barrett <tom@tombarrett.xyz> | 2025-08-15 17:56:59 +0200 |
---|---|---|
committer | tom barrett <tom@tombarrett.xyz> | 2025-08-15 17:56:59 +0200 |
commit | 8578cee5c9349bdb2e562fce692321e27212c852 (patch) | |
tree | e971df1755c53c41267a27896a5d15ad3c63dd10 /configuration.nix | |
parent | 5ae67b8ae681a614bb3f01af228b93fc84591223 (diff) |
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/configuration.nix b/configuration.nix index 78ff8ad..0a15d60 100644 --- a/configuration.nix +++ b/configuration.nix @@ -1,7 +1,11 @@ -{pkgs, ...}: { - imports = [./hardware-configuration.nix]; +{ pkgs, ... }: +{ + imports = [ ./hardware-configuration.nix ]; nix.settings = { - experimental-features = ["nix-command" "flakes"]; + experimental-features = [ + "nix-command" + "flakes" + ]; auto-optimise-store = true; }; boot = { @@ -46,7 +50,7 @@ ''; }; }; - fonts.packages = [pkgs.hermit]; + fonts.packages = [ pkgs.hermit ]; services = { openssh.enable = true; xserver = { |