Establish baseline

This commit is contained in:
Nina Chlóe Kassandra Reiß
2026-04-20 04:21:11 +02:00
commit 8df205457a
26 changed files with 678 additions and 0 deletions

49
home.nix Normal file
View File

@@ -0,0 +1,49 @@
{ config, pkgs, ... }:
let
profile = import ./profile.nix;
home-directory = "/home/${profile.username}";
ssh-filename = "${home-directory}/.ssh/id_ed25519";
in
{
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "nichkara";
home.homeDirectory = "/home/nichkara";
# Configuration options around here
home.stateVersion = "25.11";
imports = [
#./desktop-environment/config.nix
./terminal-environment/config.nix
./system-environment/config.nix
];
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = with pkgs; [
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.file = {
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
# # the Nix store. Activating the configuration will then make '~/.screenrc' a
# # symlink to the Nix store copy.
# ".screenrc".source = dotfiles/screenrc;
# # You can also set the file content immediately.
# ".gradle/gradle.properties".text = ''
# org.gradle.console=verbose
# org.gradle.daemon.idletimeout=3600000
# '';
};
home.sessionVariables = {
# EDITOR = "emacs";
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}