Skip to content

Commit 164daeb

Browse files
committed
refactor: home-manager dir
1 parent 4e8d839 commit 164daeb

25 files changed

+60
-90
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@
1818
├── dots
1919
│ └── dotfiles, e.g. mpv, oh-my-posh, ...
2020
├── home-manager
21+
│ ├── apps
22+
│ │ └── some applications
2123
│ ├── desktop
22-
│ │ └── home-manager config for all hosts
23-
│ ├── home
24-
│ │ └── additional config for my home desktop host
24+
│ │ └── desktop related things
25+
│ ├── develpment
26+
│ │ └── sdks, ideas and everything related to development
2527
│ └── shared config for both desktop and headless hosts
2628
├── hosts
2729
│ ├── desktops
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
profiles.default = {
5353
isDefault = true;
5454

55-
userChrome = builtins.readFile ../../../dots/firefox/userChrome.css;
56-
userContent = builtins.readFile ../../../dots/firefox/userContent.css;
55+
userChrome = builtins.readFile ../../dots/firefox/userChrome.css;
56+
userContent = builtins.readFile ../../dots/firefox/userContent.css;
5757

5858
# about:config
5959
settings = {
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
pkgs.runCommand "mpv-shaders"
1111
{
1212
buildInputs = [ pkgs.unzip ];
13-
shadersZip = ../../../dots/mpv/shaders.zip;
13+
shadersZip = ../../dots/mpv/shaders.zip;
1414
}
1515
''
1616
unzip -j "$shadersZip" -d "$out"
@@ -19,12 +19,12 @@
1919
};
2020

2121
inputconf = {
22-
source = ../../../dots/mpv/input.conf;
22+
source = ../../dots/mpv/input.conf;
2323
target = ".config/mpv/input.conf";
2424
};
2525

2626
mpvconf = {
27-
source = ../../../dots/mpv/mpv.conf;
27+
source = ../../dots/mpv/mpv.conf;
2828
target = ".config/mpv/mpv.conf";
2929
};
3030
};
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
{
44
home.packages = [
5-
# pkgs.davinci-resolve
6-
75
pkgs.obs-studio
86
];
97
}

0 commit comments

Comments
 (0)