This repository has been archived on 2026-01-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-01-12 22:00:09 +01:00

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";
}