From e0777a40ca19bde9fba062fdedfdd87c2b55233e Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Thu, 19 May 2022 08:48:23 -0400 Subject: [PATCH] documentation tweaks --- flake.nix | 2 +- hosts/desktop/default.nix | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index af51794..33afdbe 100644 --- a/flake.nix +++ b/flake.nix @@ -56,7 +56,7 @@ import ./hosts/desktop { inherit nixpkgs home-manager nur globals; }; }; - # Used to run commands and editing in this repo + # Used to run commands and edit files in this repo devShells = forAllSystems (system: let pkgs = import nixpkgs { inherit system; }; in { diff --git a/hosts/desktop/default.nix b/hosts/desktop/default.nix index 70059b5..eecca93 100644 --- a/hosts/desktop/default.nix +++ b/hosts/desktop/default.nix @@ -1,17 +1,18 @@ { nixpkgs, home-manager, nur, globals, ... }: +# System configuration for my desktop nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { }; modules = [ globals + home-manager.nixosModules.home-manager { networking.hostName = "desktop"; gui.enable = true; gui.compositor.enable = true; + nixpkgs.overlays = [ nur.overlay ]; } - home-manager.nixosModules.home-manager - { nixpkgs.overlays = [ nur.overlay ]; } ./hardware-configuration.nix ../common.nix ../../modules/hardware