nix/users/tristand.nix

25 lines
329 B
Nix
Raw Normal View History

{ pkgs
, config
, inputs
, system
, ...
2023-10-21 03:33:27 +02:00
}: {
imports = [
2023-10-17 19:55:45 +02:00
../home-mods/common
../home-mods/desktop
2023-10-16 23:54:37 +02:00
../home-mods/dev
../home-mods/firefox
../home-mods/plasma
2023-10-20 13:53:08 +02:00
../home-mods/shell
2023-10-16 23:54:37 +02:00
../home-mods/virt
];
config = {
home = {
username = "tristand";
stateVersion = "23.05";
};
};
}