mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
123
This commit is contained in:
@@ -33,6 +33,10 @@ let
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${inputs.zeroq.dirs.user-storage}/KeePassXC";
|
||||
target = "keepassxc";
|
||||
};
|
||||
# "beets" = {
|
||||
# source = config.lib.file.mkOutOfStoreSymlink "${inputs.zeroq.dirs.user-storage}/beets/linux";
|
||||
# target = "beets";
|
||||
# };
|
||||
};
|
||||
userDirs = {
|
||||
enable = true;
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
{ inputs, ... }@flakeContext:
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
xdg = {
|
||||
enable = true;
|
||||
autostart.enable = true;
|
||||
configFile = {
|
||||
"beets" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${inputs.zeroq.dirs.user-storage}/beets/linux";
|
||||
target = "beets";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
+1
-1
@@ -8,7 +8,7 @@ let
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [ inputs.self.homeModules.default ];
|
||||
imports = [ inputs.self.homeModules.default inputs.self.homeModules.links ];
|
||||
xdg = {
|
||||
enable = true;
|
||||
autostart.enable = true;
|
||||
|
||||
Reference in New Issue
Block a user