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; };
};
# 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 {

View File

@ -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