nix/users/tristand.nix
Tristan Druyen f355381d2b
Add various small tweaks
- utilized specialArgs
- mount /home/tristand/nix at /etc/nixos
- added work /etc/hosts
- use ids instead of paths for disk mounting
- and more
2023-11-04 00:02:01 +01:00

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";
};
}