21 lines
309 B
Nix
21 lines
309 B
Nix
{ pkgs
|
|
, config
|
|
, inputs
|
|
, system
|
|
, ...
|
|
}: {
|
|
imports = [
|
|
../home-mods/audio
|
|
../home-mods/common
|
|
../home-mods/desktop
|
|
../home-mods/firefox
|
|
../home-mods/plasma
|
|
../home-mods/shell
|
|
../home-mods/virt
|
|
];
|
|
|
|
config.home = {
|
|
username = "tester";
|
|
stateVersion = "23.05";
|
|
};
|
|
}
|