From 4d078f206f4ab5d0d2b694b1e5d8e0b791c584cb Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Tue, 24 Oct 2023 21:07:36 +0200 Subject: [PATCH] sombrero: Cleanup `configuration.nix` --- hosts/sombrero/configuration.nix | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/hosts/sombrero/configuration.nix b/hosts/sombrero/configuration.nix index 6e68b73..c576158 100644 --- a/hosts/sombrero/configuration.nix +++ b/hosts/sombrero/configuration.nix @@ -1,16 +1,5 @@ -# Edit this configuration file to define what should be installed on -# your system. Help is available in the configuration.nix(5) man page -# and in the NixOS manual (accessible by running ‘nixos-help’). - { pkgs, ... }: - { - nix.settings.experimental-features = [ "nix-command" "flakes" ]; - - nixpkgs.config.allowUnfree = true; - - environment.variables.EDITOR = "vim"; - imports = [ ../../config-manager/default.nix @@ -18,6 +7,12 @@ ./modules ]; + nix.settings.experimental-features = [ "nix-command" "flakes" ]; + + nixpkgs.config.allowUnfree = true; + + environment.variables.EDITOR = "vim"; + boot = { loader = { grub.enable = false;