diff options
author | Preston Pan <preston@nullring.xyz> | 2024-03-08 15:32:08 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2024-03-08 15:32:08 -0800 |
commit | b8dc37899991594ec1b99a662cd83447701e49be (patch) | |
tree | 99770327a81c00117c75de895883b6b73e946c71 /configuration.nix | |
parent | bd4d15f313b7af2a61f1ecd3f4de36105f07b4fc (diff) |
configure firefox in nix language; experimental features; ollama
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index 098c3a9..a120b6b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -6,6 +6,7 @@ ./hardware-configuration.nix ]; + nix.settings.experimental-features = "nix-command flakes"; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; @@ -27,6 +28,10 @@ xkbOptions = "caps:escape"; }; + services.ollama = { + enable = true; + }; + services.printing.enable = true; sound.enable = true; |