40 lines
1012 B
Nix
40 lines
1012 B
Nix
{ config, pkgs, lib, ... }:
|
|
let
|
|
profile = import ./profile.nix;
|
|
in
|
|
{
|
|
|
|
imports = [
|
|
<home-manager/nixos>
|
|
./desktop-environment/config.nix
|
|
./terminal-environment/config.nix
|
|
./system-environment/config.nix
|
|
];
|
|
|
|
users.users.${profile.username} = {
|
|
isNormalUser = true;
|
|
description = "Nina Chloé Kassandra";
|
|
extraGroups = [ "networkmanager" "wheel" "docker" "scanner" "lp"];
|
|
packages = with pkgs; [];
|
|
shell = pkgs.zsh;
|
|
};
|
|
|
|
home-manager.backupFileExtension = "bck.lck";
|
|
|
|
home-manager.users.${profile.username} = { pkgs, ... }: {
|
|
home.stateVersion = "25.11";
|
|
programs.git = {
|
|
enable = true;
|
|
settings = {
|
|
user = {
|
|
name = "Nina Chloé Kassandra Reiß";
|
|
email = "nina.reiss@nickr.eu";
|
|
};
|
|
push = {
|
|
autoSetupRemote = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|