2024-02-07 13:50:03 +01:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
outputs,
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
imports = [
|
|
|
|
./locale
|
|
|
|
./packages
|
|
|
|
];
|
2024-02-22 13:01:31 +01:00
|
|
|
sops.age.keyFile = ../../../../../../var/secrets/keys.txt;
|
2024-02-22 12:52:10 +01:00
|
|
|
sops.secrets."lillian-password".neededForUsers = true;
|
|
|
|
|
2024-03-03 20:55:49 +01:00
|
|
|
nix = {
|
|
|
|
package = pkgs.nixFlakes;
|
|
|
|
gc = {
|
|
|
|
automatic = true;
|
|
|
|
dates = "weekly";
|
|
|
|
options = "--delete-older-than 7d";
|
|
|
|
};
|
|
|
|
# This will add each flake input as a registry
|
|
|
|
# To make nix3 commands consistent with your flake
|
|
|
|
registry = lib.mapAttrs (_: value: {flake = value;}) inputs;
|
|
|
|
|
|
|
|
# This will additionally add your inputs to the system's legacy channels
|
|
|
|
# Making legacy nix commands consistent as well, awesome!
|
|
|
|
nixPath = lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry;
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
# Enable flakes and new 'nix' command
|
|
|
|
experimental-features = "nix-command flakes";
|
|
|
|
# Deduplicate and optimize nix store
|
|
|
|
auto-optimise-store = true;
|
2024-05-08 11:16:20 +02:00
|
|
|
extra-substituters = ["https://cache.lix.systems"];
|
|
|
|
trusted-public-keys = ["cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o="];
|
2024-03-03 20:55:49 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-04-26 22:59:34 +02:00
|
|
|
catppuccin.flavour = "macchiato";
|
|
|
|
catppuccin.enable = true;
|
|
|
|
|
|
|
|
console.catppuccin.enable = true;
|
|
|
|
|
2024-02-22 12:52:10 +01:00
|
|
|
users.users.lillian = {
|
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = ["sudo" "networkmanager" "wheel" "vboxsf" "docker"];
|
|
|
|
shell = pkgs.zsh;
|
|
|
|
hashedPasswordFile = config.sops.secrets."lillian-password".path;
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGatnsrKMoZSW24Lw4meb6BAgHgeyN/8rUib4nZVT+CB lillian@EDI"
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC7+LEQnC/nlYp7nQ4p6hUCqaGiqfsA3Mg8bSy+zA8Fj lillian@GLaDOS"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2024-03-04 16:11:01 +01:00
|
|
|
programs.zsh = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Enable completion of system packages by zsh
|
|
|
|
environment.pathsToLink = ["/share/zsh"];
|
|
|
|
|
2024-02-22 12:52:10 +01:00
|
|
|
users.mutableUsers = false;
|
|
|
|
|
|
|
|
users.users.root = {
|
|
|
|
hashedPassword = "*";
|
|
|
|
};
|
2024-02-07 13:50:03 +01:00
|
|
|
}
|