tangled
alpha
login
or
join now
wiro.world
/
dotfiles
2
fork
atom
yep, more dotfiles
2
fork
atom
overview
issues
1
pulls
1
pipelines
fix: remove deleted cachix
wiro.world
10 months ago
8f9d5d41
a4795b5d
+8
-20
3 changed files
expand all
collapse all
unified
split
.github
workflows
nix.yml
nixos
fragments
nix.nix
profiles
installer.nix
+4
-6
.github/workflows/nix.yml
···
1
1
name: Nix
2
2
-
on: [push, pull_request]
2
2
+
on:
3
3
+
- push
4
4
+
- pull_request
3
5
4
6
jobs:
5
7
build:
6
6
-
name: Check flake and upload build cache
8
8
+
name: Check flake
7
9
runs-on: ubuntu-latest
8
10
steps:
9
11
- uses: actions/checkout@v4
10
10
-
- uses: cachix/install-nix-action@v31
11
11
-
with:
12
12
-
github_access_token: ${{ secrets.GITHUB_TOKEN }}
13
13
-
14
12
- name: Check flake structure
15
13
run: nix flake check
+2
-6
nixos/fragments/nix.nix
···
60
60
extra-platforms = config.boot.binfmt.emulatedSystems;
61
61
62
62
trusted-users = [ config.local.user.username ];
63
63
-
extra-substituters = [
64
64
-
"https://nix-community.cachix.org"
65
65
-
];
66
66
-
extra-trusted-public-keys = [
67
67
-
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
68
68
-
];
63
63
+
extra-substituters = [ "https://nix-community.cachix.org" ];
64
64
+
extra-trusted-public-keys = [ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ];
69
65
};
70
66
};
71
67
};
+2
-8
nixos/profiles/installer.nix
···
70
70
71
71
nix.settings = {
72
72
experimental-features = [ "nix-command" "flakes" ];
73
73
-
extra-substituters = [
74
74
-
"https://nix-community.cachix.org"
75
75
-
"https://mrnossiom.cachix.org"
76
76
-
];
77
77
-
extra-trusted-public-keys = [
78
78
-
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
79
79
-
"mrnossiom.cachix.org-1:WKo+xfDFaT6pRP4YiIFsEXvyBzI/Pm9uGhURgF1wlQg="
80
80
-
];
73
73
+
extra-substituters = [ "https://nix-community.cachix.org" ];
74
74
+
extra-trusted-public-keys = [ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ];
81
75
};
82
76
83
77
# Add our keys to default users for better remote experience