mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
123
This commit is contained in:
@@ -118,7 +118,6 @@
|
||||
server = import ./home/server.nix flakeContext;
|
||||
};
|
||||
homeModules = {
|
||||
links = import ./home/modules/links.nix flakeContext;
|
||||
packages = import ./home/modules/packages.nix flakeContext;
|
||||
default = import ./home/modules/default.nix flakeContext;
|
||||
dconf = import ./home/modules/dconf.nix flakeContext;
|
||||
|
||||
@@ -13,6 +13,12 @@ let
|
||||
enable = true;
|
||||
autostart.enable = true;
|
||||
configFile = {
|
||||
configFile = {
|
||||
"beets" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${inputs.zeroq.dirs.user-storage}/beets/linux";
|
||||
target = "beets";
|
||||
};
|
||||
};
|
||||
"ludusavi" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${inputs.zeroq.dirs.user-storage}/ludusavi/cfg";
|
||||
target = "ludusavi";
|
||||
|
||||
@@ -1,19 +0,0 @@
|
||||
{ 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
+7
-1
@@ -10,9 +10,15 @@ let
|
||||
{
|
||||
imports = [
|
||||
inputs.self.homeModules.default
|
||||
inputs.self.homeModules.links
|
||||
#inputs.self.homeModules.links
|
||||
];
|
||||
xdg = {
|
||||
configFile = {
|
||||
"beets" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink "${inputs.zeroq.dirs.storage}/beets/linux";
|
||||
target = "beets";
|
||||
};
|
||||
};
|
||||
enable = true;
|
||||
autostart.enable = true;
|
||||
userDirs = {
|
||||
|
||||
Reference in New Issue
Block a user