Riley Apeldoorn
75603bd327
- Move trivial modules to `services.nix` - Gather user-related config in `users.nix` - Move loading of shared home-manager config into `shared/core`
23 lines
320 B
Nix
23 lines
320 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
|
./services.nix
|
|
./backups.nix
|
|
./users.nix
|
|
./gui.nix
|
|
./nix.nix
|
|
];
|
|
|
|
config = {
|
|
time.timeZone = "Europe/Amsterdam";
|
|
environment.systemPackages = (import ../env.nix pkgs) ++ (with pkgs; [
|
|
# For Mae
|
|
neovim
|
|
# For me
|
|
helix
|
|
]);
|
|
};
|
|
|
|
}
|