Evie Litherland-Smith
c6a8a7c34e
Rather than set username in flake.nix, set a default value in default.nix (since it's always called), and set appropriate values in personal.nix (pixelifytica) and work.nix (elitherl), since the two files are mutually exclusive and only one or the other will be imported.
19 lines
299 B
Nix
19 lines
299 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
# Programs
|
|
./programs/games/default.nix
|
|
./programs/streaming/default.nix
|
|
];
|
|
home = {
|
|
username = "pixelifytica";
|
|
packages = with pkgs;
|
|
with kdePackages; [
|
|
blender
|
|
freecad
|
|
prusa-slicer
|
|
ktorrent
|
|
noson
|
|
];
|
|
};
|
|
}
|