.github
.vscode
docs
hydra
keys
lib
modules
pkgs
systems
artemision
ao3_skins
hypr
kernel-patches
audio.nix
configuration.nix
default.nix
desktop.nix
fingerprint.nix
fonts.nix
graphics.nix
hardware.nix
libvirt.nix
polkit.nix
programs.nix
secrets.yaml
steam.nix
wifi.nix
zerotier.nix
palatine-hill
users
utils
.envrc
.gitconfig
.gitignore
.sops.yaml
CONTRIBUTING.md
README.md
checks.nix
flake.lock
flake.nix
shell.nix
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>
18 lines
379 B
Nix
18 lines
379 B
Nix
{ inputs, ... }:
|
|
{
|
|
system = "x86_64-linux";
|
|
home = true;
|
|
sops = true;
|
|
server = false;
|
|
users = [ "alice" ];
|
|
modules = [
|
|
inputs.nixos-hardware.nixosModules.framework-16-7040-amd
|
|
{
|
|
environment.systemPackages = [
|
|
inputs.wired-notify.packages.x86_64-linux.default
|
|
inputs.hyprland-contrib.packages.x86_64-linux.grimblast
|
|
];
|
|
}
|
|
];
|
|
}
|