mirror of
https://github.com/szymon-jozef/amazing-dotfiles.git
synced 2026-09-07 12:10:45 +02:00
trele morele
This commit is contained in:
12
flake.nix
12
flake.nix
@@ -49,11 +49,16 @@
|
|||||||
obsidian = "Dokumenty/obsidian";
|
obsidian = "Dokumenty/obsidian";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
system = "x86_64-linux";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
homeConfigurations = {
|
homeConfigurations = {
|
||||||
"arch" = home-manager.lib.homeManagerConfiguration {
|
"arch" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = import nixpkgs { system = "x86_64-linux"; };
|
pkgs = import nixpkgs {
|
||||||
|
inherit system;
|
||||||
|
config.allowUnfree = true;
|
||||||
|
};
|
||||||
extraSpecialArgs = {
|
extraSpecialArgs = {
|
||||||
inherit
|
inherit
|
||||||
inputs
|
inputs
|
||||||
@@ -69,7 +74,10 @@
|
|||||||
|
|
||||||
};
|
};
|
||||||
"nixos" = home-manager.lib.homeManagerConfiguration {
|
"nixos" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = import nixpkgs { system = "x86_64-linux"; };
|
pkgs = import nixpkgs {
|
||||||
|
inherit system;
|
||||||
|
config.allowUnfree = true;
|
||||||
|
};
|
||||||
extraSpecialArgs = {
|
extraSpecialArgs = {
|
||||||
inherit
|
inherit
|
||||||
inputs
|
inputs
|
||||||
|
|||||||
@@ -43,4 +43,17 @@
|
|||||||
"x-scheme-handler/tuta" = [ "tutanota-desktop.desktop" ];
|
"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;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user