Files
nixverse/nodes/hosts/common/configuration.nix
2025-06-29 06:59:41 -04:00

30 lines
502 B
Nix

{ pkgs, ... }:
{
imports = [
./programs/firefox.nix
./programs/git.nix
./programs/kde.nix
./services/desktopmanager.nix
./services/displaymanager.nix
];
nixpkgs = {
config.allowUnfree = true;
};
nix = {
gc.options = "--delete-older-than 30d";
optimise.automatic = true;
extraOptions = ''
experimental-features = nix-command flakes
'';
};
users.users = {
jay = {
description = "Jay Carter";
shell = pkgs.bash;
};
};
}