2025.04.30-20:50

This commit is contained in:
2025-04-30 20:47:57 +02:00
commit 8065685ccb
153 changed files with 6149 additions and 0 deletions

View File

@ -0,0 +1,73 @@
{ config, lib, pkgs, osConfig, ... }:
let
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-24.11.tar.gz";
in
{
imports = [
(import "${home-manager}/nixos")
];
home-manager.backupFileExtension = "backup";
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.zulumann = {
home.stateVersion = "24.11";
home.homeDirectory = "/home/zulumann";
home.packages = with pkgs; [
neofetch
];
imports = [
./../home
];
# Set profile
home.file = {
".profile" = {
text = ''
export GTK_THEME=Arc-Dark
'';
};
};
# Set script folder
home.file = {
".local/bin" = {
executable = true;
recursive = true;
source = /etc/nixos/config/home/scripts;
};
};
# Set Nemo script folder
home.file = {
".local/share/nemo/scripts" = {
executable = true;
recursive = true;
source = /etc/nixos/config/home/nemo_scripts;
};
};
# Set Nemo Action folder
home.file = {
".local/share/nemo/actions" = {
executable = true;
recursive = true;
source = /etc/nixos/config/home/nemo_actions;
};
};
# Enable GIT
programs.git = {
enable = true;
userName = "zulumann";
userEmail = "zulumann_70@gmx.de";
};
programs.home-manager.enable = true;
};
}