87 lines
2.0 KiB
Nix
87 lines
2.0 KiB
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
system,
|
|
...
|
|
}: let
|
|
ifTheyExist = groups: builtins.filter (group: builtins.hasAttr group config.users.groups) groups;
|
|
in {
|
|
users.users.adam = {
|
|
isNormalUser = true;
|
|
shell = pkgs.zsh;
|
|
# openssh.authorizedKeys.keys = [];
|
|
extraGroups = ifTheyExist [
|
|
"wheel"
|
|
"networkmanager"
|
|
"audio"
|
|
"video"
|
|
"git"
|
|
"mysql"
|
|
"docker"
|
|
"libvirtd"
|
|
"network"
|
|
];
|
|
};
|
|
|
|
imports = [
|
|
inputs.home-manager.nixosModules.home-manager
|
|
../core
|
|
../services/adampad.nix
|
|
../hardware/adampad.nix
|
|
../locale/adampad.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
home-manager.users.adam = import ../../home/adam/home.nix;
|
|
nix = let
|
|
flakeInputs = lib.filterAttrs (_: lib.isType "flake") inputs;
|
|
in {
|
|
settings = {
|
|
auto-optimise-store = lib.mkDefault true;
|
|
warn-dirty = false;
|
|
# Enable flakes and new 'nix' command
|
|
experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
];
|
|
# Opinionated: disable global registry
|
|
flake-registry = "";
|
|
# Workaround for https://github.com/NixOS/nix/issues/9574
|
|
nix-path = config.nix.nixPath;
|
|
};
|
|
# Opinionated: disable channels
|
|
channel.enable = false;
|
|
|
|
# Opinionated: make flake registry and nix path match flake inputs
|
|
registry = lib.mapAttrs (_: flake: {inherit flake;}) flakeInputs;
|
|
nixPath = lib.mapAttrsToList (n: _: "${n}=flake:${n}") flakeInputs;
|
|
};
|
|
|
|
# Bootloader
|
|
boot.loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
# Enable networking
|
|
networking = {
|
|
networkmanager.enable = true;
|
|
hostName = "adampad";
|
|
};
|
|
|
|
# Garbage collector / Nix helper
|
|
programs = {
|
|
nh = {
|
|
enable = true;
|
|
clean.enable = true;
|
|
clean.extraArgs = "--keep-since 4d --keep 3";
|
|
flake = "/home/adam/.nix-config";
|
|
};
|
|
};
|
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
system.stateVersion = "24.05";
|
|
}
|