mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-03-19 15:50:30 +01:00
70 lines
2.1 KiB
Nix
70 lines
2.1 KiB
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
username,
|
|
host,
|
|
lib,
|
|
system,
|
|
...
|
|
}:
|
|
{
|
|
imports =
|
|
(lib.optionals (system == "x64_64-linux") [ inputs.home-manager.nixosModules.home-manager ])
|
|
++ (lib.optionals (system == "aarch64-darwin") [ inputs.home-manager.darwinModules.home-manager ])
|
|
++ (lib.optionals (system == "x64_64-linux") [ ./../../roles/default.nix ])
|
|
++ (lib.optionals (system == "aarch64-linux") [ ./../../roles/default.nix ])
|
|
++ (lib.optionals (system == "x64_64-linux") [ ./user-linux.nix ])
|
|
++ (lib.optionals (system == "aarch64-linux") [ ./user-linux.nix ])
|
|
++ (lib.optionals (system == "x64_64-linux") [ ./sops.nix ])
|
|
++ (lib.optionals (system == "aarch64-linux") [ ./sops.nix ])
|
|
++ [ ./../../variables.nix ];
|
|
|
|
home-manager = {
|
|
backupFileExtension = "bak";
|
|
useUserPackages = true;
|
|
useGlobalPkgs = true;
|
|
extraSpecialArgs = { inherit inputs username host; };
|
|
users.${username} = {
|
|
imports =
|
|
if (host == "violet") then
|
|
[ ./../home/default.server.nix ]
|
|
else if (host == "dandelion") then
|
|
[ ./../home/default.server.nix ]
|
|
else if (host == "lily") then
|
|
[ ./../home/default.server.nix ]
|
|
else if (host == "posy") then
|
|
[ ./../home/default.server.nix ]
|
|
else if (host == "hazel") then
|
|
[ ./../home/default.server.nix ]
|
|
else if (host == "daisy") then
|
|
[ ./../home/default.server.nix ]
|
|
else if (system == "aarch64-darwin") then
|
|
[ ./../home/default.azalea.nix ]
|
|
else
|
|
[ ./../home ];
|
|
home = {
|
|
username = "liv";
|
|
stateVersion = "22.11";
|
|
sessionVariables = {
|
|
EDITOR = "nvim";
|
|
VISUAL = "nvim";
|
|
PAGER = "less";
|
|
};
|
|
};
|
|
programs.home-manager.enable = true;
|
|
};
|
|
};
|
|
|
|
users.users.${username} = {
|
|
home =
|
|
if (system == "x64_64-linux") then
|
|
"/home/${username}"
|
|
else if (system == "aarch64-darwin") then
|
|
"/Users/${username}"
|
|
else
|
|
"/home/${username}";
|
|
shell = pkgs.zsh;
|
|
description = "ahwx";
|
|
};
|
|
nix.settings.allowed-users = [ "${username}" ];
|
|
}
|