21 lines
315 B
Nix
21 lines
315 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./btop.nix
|
|
./helix.nix
|
|
./mime-apps.nix
|
|
./packages.nix
|
|
./shell.nix
|
|
];
|
|
home.username = "nils";
|
|
home.homeDirectory = "/home/nils";
|
|
|
|
services.nextcloud-client = {
|
|
enable = true;
|
|
startInBackground = true;
|
|
};
|
|
|
|
home.stateVersion = "25.11";
|
|
}
|