mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
documentation tweaks
This commit is contained in:
parent
99bff6fa42
commit
e0777a40ca
@ -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 {
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user