File tree 9 files changed +31
-153
lines changed
9 files changed +31
-153
lines changed Original file line number Diff line number Diff line change 2
2
description = "Cassandra's everything flake" ;
3
3
4
4
inputs = {
5
- nixpkgs . url = "github:nixos/nixpkgs/nixos-24.05 " ;
6
- nixpkgs-unstable . url = "github:nixos/nixpkgs/e897da8080bec8cbb6026c680818a035656c8da7 " ;
5
+ nixpkgs . url = "github:nixos/nixpkgs/nixos-24.11 " ;
6
+ nixpkgs-unstable . url = "github:nixos/nixpkgs/446b013ec787228fe8d8ae04c76788812b54ec13 " ;
7
7
8
8
flake-utils . url = "github:numtide/flake-utils" ;
9
9
15
15
url = "github:LnL7/nix-darwin" ;
16
16
inputs . nixpkgs . follows = "nixpkgs" ;
17
17
} ;
18
-
19
- pkg-mergiraf = {
20
- url = "git+https://codeberg.org/mergiraf/mergiraf" ;
21
- inputs . nixpkgs . follows = "nixpkgs-unstable" ;
22
- } ;
23
18
} ;
24
19
25
20
outputs = {
29
24
flake-utils ,
30
25
home-manager ,
31
26
nix-darwin ,
32
- pkg-mergiraf ,
33
27
...
34
28
} :
35
29
{
60
54
} ;
61
55
overlays = [
62
56
( final : prev : {
63
- mergiraf = pkg-mergiraf . packages . ${ system } . mergiraf ;
57
+
64
58
} )
65
59
] ;
66
60
pkgs = import nixpkgs {
188
182
modules = [ ./nix-darwin/host/maeve.nix ] ;
189
183
specialArgs = { inherit unstable ; } ;
190
184
} ;
185
+ Clementine = nix-darwin . lib . darwinSystem {
186
+ modules = [ ./nix-darwin/host/clementine.nix ] ;
187
+ specialArgs = { inherit unstable ; } ;
188
+ } ;
191
189
} ;
192
190
193
191
packages . thorium-browser = pkgs . callPackage ./packages/thorium-browser.nix { } ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ update OFFSET='3day': _pull
30
30
git commit -m " flake: update inputs"
31
31
32
32
switch-hm : _pull
33
- chezmoi update -a
34
33
home-manager switch --flake ' .#{{ hostname}} '
35
34
36
35
switch-nixos : _pull
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ with pkgs;
5
5
curl
6
6
pv
7
7
gptfdisk
8
- gitFull
8
+ git
9
9
10
10
# finding
11
11
fd
Original file line number Diff line number Diff line change @@ -41,6 +41,6 @@ with pkgs;
41
41
]
42
42
++ (
43
43
if pkgs . stdenv . isDarwin
44
- then [ fallback . numbat ]
44
+ then [ ]
45
45
else [ pkgs . numbat ]
46
46
)
Original file line number Diff line number Diff line change 1
- { pkgs } :
1
+ {
2
+ pkgs ,
3
+ fallback ? pkgs ,
4
+ } :
2
5
with pkgs ; [
3
6
# more shells!
4
7
xonsh
@@ -25,7 +28,7 @@ with pkgs; [
25
28
imagemagickBig
26
29
27
30
# cloud utils
28
- awscli2
31
+ fallback . awscli2
29
32
30
33
# programming languages in global context
31
34
python312
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ with pkgs; [
5
5
merriweather
6
6
7
7
fira-code
8
- fira-code-nerdfont
8
+ nerd-fonts . fira-code
9
9
iosevka
10
10
iosevka-comfy . comfy
11
11
departure-mono
Original file line number Diff line number Diff line change 1
1
{ pkgs } :
2
2
with pkgs ; [
3
- _1password
3
+ _1password-cli
4
4
bashInteractive
5
5
curl
6
6
gnugrep
You can’t perform that action at this time.
0 commit comments