Skip to content

Commit 58a30e4

Browse files
committed
initial commit
0 parents  commit 58a30e4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+2994
-0
lines changed

.github/workflows/deadnix.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on: [ push ]
2+
3+
name: Dead code analysis
4+
5+
jobs:
6+
deadnix:
7+
name: Deadnix
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: cachix/install-nix-action@v25
12+
- uses: cachix/cachix-action@v14
13+
with:
14+
name: deadnix
15+
- uses: astro/deadnix-action@main

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Nix
2+
result
3+
*.qcow2

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# nixos

TODO.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# TODO
2+
3+
- [ ] Start localsend_app on startup silently
4+
- [ ] Fix issue that pytorch does not recognise CUDA
5+
- [ ] Setup Windows VM with full single-GPU passthrough
6+
- [ ] Fix 100% GPU usage in GPU-intensive apps
7+
- [ ] Fix Obsidian flickering
8+
- [ ] One password clipboard copy does not work
9+

dots/easyeffects/autoload/input/.gitkeep

Whitespace-only changes.

dots/easyeffects/autoload/output/.gitkeep

Whitespace-only changes.

dots/easyeffects/input/.gitkeep

Whitespace-only changes.

dots/easyeffects/output/.gitkeep

Whitespace-only changes.

dots/easyeffects/rnnoise/.gitkeep

Whitespace-only changes.

dots/oh-my-posh/settings.json

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
3+
"palette": {
4+
"os": "#ACB0BE",
5+
"closer": "p:os",
6+
"pink": "#F4B8E4",
7+
"lavender": "#BABBF1",
8+
"blue": "#8CAAEE"
9+
},
10+
"blocks": [
11+
{
12+
"alignment": "left",
13+
"segments": [
14+
{
15+
"foreground": "p:os",
16+
"style": "plain",
17+
"template": "{{.Icon}} ",
18+
"type": "os"
19+
},
20+
{
21+
"foreground": "p:blue",
22+
"style": "plain",
23+
"template": "{{ .UserName }}@{{ .HostName }} ",
24+
"type": "session"
25+
},
26+
{
27+
"foreground": "p:pink",
28+
"properties": {
29+
"folder_icon": "..\ue5fe..",
30+
"home_icon": "~",
31+
"style": "agnoster_short"
32+
},
33+
"style": "plain",
34+
"template": "{{ .Path }} ",
35+
"type": "path"
36+
},
37+
{
38+
"foreground": "p:lavender",
39+
"properties": {
40+
"branch_icon": "\ue725 ",
41+
"cherry_pick_icon": "\ue29b ",
42+
"commit_icon": "\uf417 ",
43+
"fetch_status": false,
44+
"fetch_upstream_icon": false,
45+
"merge_icon": "\ue727 ",
46+
"no_commits_icon": "\uf0c3 ",
47+
"rebase_icon": "\ue728 ",
48+
"revert_icon": "\uf0e2 ",
49+
"tag_icon": "\uf412 "
50+
},
51+
"template": "{{ .HEAD }} ",
52+
"style": "plain",
53+
"type": "git"
54+
},
55+
{
56+
"style": "plain",
57+
"foreground": "p:closer",
58+
"template": "\uf105",
59+
"type": "text"
60+
}
61+
],
62+
"type": "prompt"
63+
}
64+
],
65+
"final_space": true,
66+
"version": 3
67+
}

0 commit comments

Comments
 (0)