Skip to content

DynamicGoose/dot-files

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dot-files

My multi-host NixOS flake!

Usage

Important

If you want to adapt these dot files for yourself be sure to change the default user in common.nix and configure your own hosts.

When setting up a host that doesn't have a config yet, add a new entry to nixosConfigurations in flake.nix. The entry should probably look like this:

new-host = nixpkgs.lib.nixosSystem {
  system = "x86_64-linux";
  specialArgs = {
    inherit inputs;
  };
  modules = common-modules ++ [
    ./hosts/new-host/config.nix
    ./hosts/new-host/hardware-configuration.nix
  ];
};

Then create the appropriate files in hosts/new_host/ (hardware-configuration.nix, config.nix).

Important

flakes and nix-command have to be enabled to rebuild the system using flakes. nix.settings.experimental-features = ["nix-command" "flakes"];

Afterwards, Just run copy_config.sh:

./copy_config.sh

and the system is ready to be rebuild.

Tip

NixOS channels can be removed, because flakes don't rely on them. (nix-channel)

Shells

In the nix-shells directory, there are also a couple of nix shells for different usecases

About

my config files

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published