Adicionando home-manager

Upd de rotina e adiçao do home-manager
This commit is contained in:
Guilherme Hermando
2025-09-12 21:55:58 -03:00
committed by GitHub
parent a9d54e8134
commit 4ee77b05e3
8 changed files with 103 additions and 48 deletions
+18
View File
@@ -0,0 +1,18 @@
{pkgs, config, ...}: {
imports = [
./conf/Fontes/fontes.nix
./conf/Pkgs/pkgshome.nix
];
home.username = "gui";
home.homeDirectory = "/home/gui";
programs.home-manager.enable = true;
programs.fish.enable = true;
nixpkgs.config.allowUnfree = true;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "25.11";
}