trele morele

This commit is contained in:
2026-02-26 13:52:30 +01:00
parent bea3099e0d
commit 62254c44e3
2 changed files with 23 additions and 2 deletions

View File

@@ -49,11 +49,16 @@
obsidian = "Dokumenty/obsidian";
};
};
system = "x86_64-linux";
in
{
homeConfigurations = {
"arch" = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs { system = "x86_64-linux"; };
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
extraSpecialArgs = {
inherit
inputs
@@ -69,7 +74,10 @@
};
"nixos" = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs { system = "x86_64-linux"; };
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
extraSpecialArgs = {
inherit
inputs

View File

@@ -39,4 +39,17 @@
"x-scheme-handler/tuta" = [ "tutanota-desktop.desktop" ];
};
};
xdg.userDirs = {
enable = true;
createDirectories = true;
desktop = null;
documents = "$HOME/Dokumenty";
download = "$HOME/Pobrane";
music = null;
pictures = "$HOME/Obrazy";
videos = "$HOME/Video";
templates = null;
publicShare = null;
};
}