File tree Expand file tree Collapse file tree 10 files changed +30
-11
lines changed
modules/home-manager/purpose/development Expand file tree Collapse file tree 10 files changed +30
-11
lines changed Original file line number Diff line number Diff line change 9
9
papers # PDF viewer
10
10
decoder # QR codes
11
11
dialect # Translation
12
- planify
12
+ # planify
13
13
gnome-clocks
14
14
gnome-calculator
15
15
gnome-graphs
Original file line number Diff line number Diff line change @@ -161,6 +161,7 @@ with lib;
161
161
ecosystem = {
162
162
no_update_news = true ;
163
163
no_donation_nag = true ;
164
+ enforce_permissions = true ;
164
165
} ;
165
166
166
167
general = {
Original file line number Diff line number Diff line change 11
11
explicit_sync_kms = 2 ;
12
12
direct_scanout = 2 ;
13
13
14
- cm_fs_passthrough = 1 ;
14
+ cm_fs_passthrough = 2 ;
15
15
cm_enabled = true ;
16
- # send_content_type = true;
16
+ send_content_type = true ;
17
17
} ;
18
18
19
19
monitor = lib . mkAfter [
Original file line number Diff line number Diff line change 11
11
btop = {
12
12
enable = true ;
13
13
package = pkgs . btop ;
14
- settings = { } ;
14
+ settings = {
15
+ update_ms = 300 ;
16
+ proc_per_core = true ;
17
+ proc_info_smaps = true ;
18
+ proc_filter_kernel = true ;
19
+ use_fstab = false ;
20
+ swap_disk = false ;
21
+ io_mode = true ;
22
+ } ;
15
23
} ;
16
24
17
25
bottom = {
Original file line number Diff line number Diff line change 22
22
} ;
23
23
24
24
services = {
25
- dleyna-renderer . enable = false ;
26
- dleyna-server . enable = false ;
25
+ dleyna . enable = false ;
27
26
power-profiles-daemon . enable = false ;
28
27
libinput . enable = false ;
29
28
Original file line number Diff line number Diff line change 53
53
54
54
xdg . configFile . "act/actrc" . text = ''
55
55
-P ubuntu-latest=catthehacker/ubuntu:act-latest
56
- -P ubuntu-latest=catthehacker/ubuntu:22.04
57
- -P ubuntu-latest=catthehacker/ubuntu:20.04
58
- -P ubuntu-latest=catthehacker/ubuntu:18.04
56
+ -P ubuntu-24.04=catthehacker/ubuntu:act-24.04
57
+ -P ubuntu-22.04=catthehacker/ubuntu:act-22.04
58
+ -P ubuntu-20.04=catthehacker/ubuntu:act-20.04
59
+ -P ubuntu-18.04=catthehacker/ubuntu:act-18.04
59
60
--use-new-action-cache
61
+ --action-offline-mode
62
+ --pull false
63
+ --artifact-server-path /tmp/artifacts
60
64
'' ;
61
65
62
66
user . persistence . directories = [
Original file line number Diff line number Diff line change 87
87
userSettings = {
88
88
#region Look & Feel
89
89
"workbench.startupEditor" = "none" ;
90
+
90
91
"workbench.iconTheme" = "material-icon-theme" ;
92
+ "markdown-preview-github-styles.colorTheme" = "dark" ;
91
93
92
94
"window.zoomLevel" = 3 ;
93
95
"window.titleBarStyle" = "custom" ;
140
142
"evenBetterToml.formatter.arrayAutoExpand" = true ;
141
143
"evenBetterToml.formatter.arrayTrailingComma" = true ;
142
144
"evenBetterToml.formatter.columnWidth" = 80 ;
145
+
146
+ "markdown.validate.enabled" = true ;
143
147
#endregion
144
148
145
149
#region Telemetry & Data Collection
Original file line number Diff line number Diff line change 83
83
discord = prev . discord . override {
84
84
# OpenASAR completely breaks Discord
85
85
# withOpenASAR = true;
86
- withVencord = true ;
86
+ withVencord = false ;
87
87
nss = final . nss_latest ;
88
88
} ;
89
89
Original file line number Diff line number Diff line change 6
6
# Racing Games
7
7
monocoque = pkgs . callPackage ./monocoque { } ;
8
8
9
+ # MCP Servers
10
+ github-actions-mcp-server = pkgs . callPackage ./github-actions-mcp-server { } ;
11
+
9
12
new-host = pkgs . callPackage ./helpers/new-host.nix { } ;
10
13
list-ephemeral = pkgs . callPackage ./list-ephemeral { } ;
11
14
}
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ EXCLUDE=(
29
29
30
30
" $HOME_PREFIX /.cache"
31
31
32
+ " $HOME_PREFIX /.cargo"
32
33
" $HOME_PREFIX /.mozilla/firefox/*/cache2/entries"
33
34
" $HOME_PREFIX /.steam"
34
35
" $HOME_PREFIX /.pki"
@@ -71,6 +72,5 @@ for app in "${ELECTRON_APPS[@]}"; do
71
72
done
72
73
done
73
74
74
- # Join it into a string separated by commas
75
75
EXCLUDE_STR=$( IFS=,; echo " ${EXCLUDE[*]} " )
76
76
fd --one-file-system --prune --base-directory / --type f --hidden --exclude " {$EXCLUDE_STR }" " $@ "
You can’t perform that action at this time.
0 commit comments