tangled
alpha
login
or
join now
ovyerus.com
/
dotfiles
1
fork
atom
Nix configurations for my personal machines (Linux & macOS)
1
fork
atom
overview
issues
pulls
pipelines
Remove astal/ags for now
ovyerus.com
10 months ago
9950bd4c
ee5d3c1c
verified
This commit was signed with the committer's
known signature
.
ovyerus.com
SSH Key Fingerprint:
SHA256:mXbp9WNBIT0nRNe28t2hrxfSwnSX7UBeW2DVlIyf0uw=
+16
-59
3 changed files
expand all
collapse all
unified
split
flake.lock
flake.nix
home
wallsocket.nix
-43
flake.lock
···
1
1
{
2
2
"nodes": {
3
3
-
"ags": {
4
4
-
"inputs": {
5
5
-
"astal": "astal",
6
6
-
"nixpkgs": [
7
7
-
"nixpkgs"
8
8
-
]
9
9
-
},
10
10
-
"locked": {
11
11
-
"lastModified": 1744557573,
12
12
-
"narHash": "sha256-XAyj0iDuI51BytJ1PwN53uLpzTDdznPDQFG4RwihlTQ=",
13
13
-
"owner": "Aylur",
14
14
-
"repo": "ags",
15
15
-
"rev": "3ed9737bdbc8fc7a7c7ceef2165c9109f336bff6",
16
16
-
"type": "github"
17
17
-
},
18
18
-
"original": {
19
19
-
"owner": "Aylur",
20
20
-
"repo": "ags",
21
21
-
"type": "github"
22
22
-
}
23
23
-
},
24
24
-
"astal": {
25
25
-
"inputs": {
26
26
-
"nixpkgs": [
27
27
-
"ags",
28
28
-
"nixpkgs"
29
29
-
]
30
30
-
},
31
31
-
"locked": {
32
32
-
"lastModified": 1742571008,
33
33
-
"narHash": "sha256-5WgfJAeBpxiKbTR/gJvxrGYfqQRge5aUDcGKmU1YZ1Q=",
34
34
-
"owner": "aylur",
35
35
-
"repo": "astal",
36
36
-
"rev": "dc0e5d37abe9424c53dcbd2506a4886ffee6296e",
37
37
-
"type": "github"
38
38
-
},
39
39
-
"original": {
40
40
-
"owner": "aylur",
41
41
-
"repo": "astal",
42
42
-
"type": "github"
43
43
-
}
44
44
-
},
45
3
"flake-utils": {
46
4
"inputs": {
47
5
"systems": "systems"
···
354
312
},
355
313
"root": {
356
314
"inputs": {
357
357
-
"ags": "ags",
358
315
"home-manager": "home-manager",
359
316
"iosevka-solai": "iosevka-solai",
360
317
"lix-module": "lix-module",
+15
-15
flake.nix
···
34
34
inputs.nixpkgs.follows = "nixpkgs";
35
35
};
36
36
37
37
-
ags = {
38
38
-
url = "github:Aylur/ags";
39
39
-
inputs.nixpkgs.follows = "nixpkgs";
40
40
-
};
37
37
+
# ags = {
38
38
+
# url = "github:Aylur/ags";
39
39
+
# inputs.nixpkgs.follows = "nixpkgs";
40
40
+
# };
41
41
};
42
42
43
43
outputs = {
44
44
-
ags,
44
44
+
# ags,
45
45
home-manager,
46
46
lix-module,
47
47
niri-flake,
···
53
53
} @ inputs: let
54
54
system = "x86_64-linux";
55
55
pkgs = nixpkgs.legacyPackages.${system};
56
56
-
agsPkgs = ags.packages.${system};
56
56
+
# agsPkgs = ags.packages.${system};
57
57
in {
58
58
packages.${system} = {
59
59
iconifydl = pkgs.callPackage ./pkgs/iconifydl.nix {};
60
60
61
61
-
default = ags.lib.bundle {
62
62
-
inherit pkgs;
63
63
-
src = ./files/astal;
64
64
-
name = "ovy-shell";
65
65
-
entry = "app.ts";
66
66
-
};
61
61
+
# default = ags.lib.bundle {
62
62
+
# inherit pkgs;
63
63
+
# src = ./files/astal;
64
64
+
# name = "ovy-shell";
65
65
+
# entry = "app.ts";
66
66
+
# };
67
67
};
68
68
69
69
-
devShells.x86_64-linux.default = pkgs.mkShell {
70
70
-
buildInputs = [agsPkgs.agsFull agsPkgs.io agsPkgs.apps agsPkgs.tray self.packages.${system}.iconifydl];
71
71
-
};
69
69
+
# devShells.x86_64-linux.default = pkgs.mkShell {
70
70
+
# buildInputs = [agsPkgs.agsFull agsPkgs.io agsPkgs.apps agsPkgs.tray self.packages.${system}.iconifydl];
71
71
+
# };
72
72
73
73
nixosConfigurations.wallsocket = nixpkgs.lib.nixosSystem {
74
74
system = "x86_64-linux";
+1
-1
home/wallsocket.nix
···
27
27
};
28
28
29
29
# Temporary location for these
30
30
-
home.packages = [pkgs.inotify-tools inputs.ags.packages.${pkgs.system}.default];
30
30
+
# home.packages = [pkgs.inotify-tools inputs.ags.packages.${pkgs.system}.default];
31
31
32
32
home.sessionVariables.DOCKER_HOST = "unix:///run/user/1000/podman/podman.sock";
33
33