.github
.vscode
docs
hydra
keys
lib
modules
systems
artemision
bob
jeeves
jeeves-jr
palatine-hill
rhapsody-in-green
configuration.nix
default.nix
hardware.nix
users
utils
.envrc
.gitconfig
.gitignore
.sops.yaml
checks.nix
flake.lock
flake.nix
shell.nix
sops-mergetool.sh
statix.toml
treefmt.toml
Allows home-manager configs to be done on a server/non-server basis Provides an example config by moving emacs to its own space (behind a lib.optionals so only non-server machines accept it) marks artemision and rhapsody-in-green as explicitly non-server machines Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
10 lines
194 B
Nix
10 lines
194 B
Nix
{ inputs, ... }:
|
|
{
|
|
users = [ "richie" ];
|
|
system = "x86_64-linux";
|
|
home = true;
|
|
sops = true;
|
|
server = false;
|
|
modules = [ inputs.nixos-hardware.nixosModules.framework-13-7040-amd ];
|
|
}
|