Files
nixverse/nodes/hosts/common/configuration.nix
2025-06-29 07:46:05 -04:00

38 lines
706 B
Nix

{ pkgs, ... }:
{
imports = [
./programs/firefox.nix
./programs/general.nix
./programs/git.nix
./programs/kde.nix
./programs/steam.nix
./scripts/upgrade-diff.nix
./services/desktopmanager.nix
./services/displaymanager.nix
./services/sound.nix
./system/bluetooth.nix
./system/locale.nix
./system/time.nix
./system/users.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;
};
};
}