- utilized specialArgs - mount /home/tristand/nix at /etc/nixos - added work /etc/hosts - use ids instead of paths for disk mounting - and more
22 lines
310 B
Nix
22 lines
310 B
Nix
{ pkgs
|
|
, config
|
|
, inputs
|
|
, system
|
|
, ...
|
|
}: {
|
|
imports = [
|
|
../home-mods/common
|
|
../home-mods/desktop
|
|
../home-mods/dev
|
|
../home-mods/firefox
|
|
../home-mods/plasma
|
|
../home-mods/shell
|
|
../home-mods/virt
|
|
];
|
|
|
|
config.home = {
|
|
username = "tristand";
|
|
|
|
stateVersion = "23.05";
|
|
};
|
|
}
|