documentation tweaks

This commit is contained in:
Noah Masur 2022-05-19 08:48:23 -04:00
parent 99bff6fa42
commit e0777a40ca
2 changed files with 4 additions and 3 deletions

View File

@ -56,7 +56,7 @@
import ./hosts/desktop { inherit nixpkgs home-manager nur globals; }; 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: devShells = forAllSystems (system:
let pkgs = import nixpkgs { inherit system; }; let pkgs = import nixpkgs { inherit system; };
in { in {

View File

@ -1,17 +1,18 @@
{ nixpkgs, home-manager, nur, globals, ... }: { nixpkgs, home-manager, nur, globals, ... }:
# System configuration for my desktop
nixpkgs.lib.nixosSystem { nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { }; specialArgs = { };
modules = [ modules = [
globals globals
home-manager.nixosModules.home-manager
{ {
networking.hostName = "desktop"; networking.hostName = "desktop";
gui.enable = true; gui.enable = true;
gui.compositor.enable = true; gui.compositor.enable = true;
nixpkgs.overlays = [ nur.overlay ];
} }
home-manager.nixosModules.home-manager
{ nixpkgs.overlays = [ nur.overlay ]; }
./hardware-configuration.nix ./hardware-configuration.nix
../common.nix ../common.nix
../../modules/hardware ../../modules/hardware