1
Files
flake-nixinator/home/christoph/servenix/default.nix

25 lines
266 B
Nix

{
pkgs,
nixosConfig,
config,
lib,
username,
...
}: {
imports = [
../../modules
];
config = {
modules = {
btop.cuda = true;
};
home.packages = with pkgs; [
docker-compose
];
home.stateVersion = "23.05";
};
}