Skip to content

Commit 4f93c8b

Browse files
committed
feat: update flake
1 parent 2d8c93f commit 4f93c8b

File tree

9 files changed

+31
-153
lines changed

9 files changed

+31
-153
lines changed

flake.lock

+15-125
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+7-9
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
description = "Cassandra's everything flake";
33

44
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";
77

88
flake-utils.url = "github:numtide/flake-utils";
99

@@ -15,11 +15,6 @@
1515
url = "github:LnL7/nix-darwin";
1616
inputs.nixpkgs.follows = "nixpkgs";
1717
};
18-
19-
pkg-mergiraf = {
20-
url = "git+https://codeberg.org/mergiraf/mergiraf";
21-
inputs.nixpkgs.follows = "nixpkgs-unstable";
22-
};
2318
};
2419

2520
outputs = {
@@ -29,7 +24,6 @@
2924
flake-utils,
3025
home-manager,
3126
nix-darwin,
32-
pkg-mergiraf,
3327
...
3428
}:
3529
{
@@ -60,7 +54,7 @@
6054
};
6155
overlays = [
6256
(final: prev: {
63-
mergiraf = pkg-mergiraf.packages.${system}.mergiraf;
57+
6458
})
6559
];
6660
pkgs = import nixpkgs {
@@ -188,6 +182,10 @@
188182
modules = [./nix-darwin/host/maeve.nix];
189183
specialArgs = {inherit unstable;};
190184
};
185+
Clementine = nix-darwin.lib.darwinSystem {
186+
modules = [./nix-darwin/host/clementine.nix];
187+
specialArgs = {inherit unstable;};
188+
};
191189
};
192190

193191
packages.thorium-browser = pkgs.callPackage ./packages/thorium-browser.nix {};

home-manager/module/fonts.nix

-12
This file was deleted.

justfile

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ update OFFSET='3day': _pull
3030
git commit -m "flake: update inputs"
3131

3232
switch-hm: _pull
33-
chezmoi update -a
3433
home-manager switch --flake '.#{{hostname}}'
3534

3635
switch-nixos: _pull

pkgset/00-core.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ with pkgs;
55
curl
66
pv
77
gptfdisk
8-
gitFull
8+
git
99

1010
# finding
1111
fd

pkgset/20-comfy.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ with pkgs;
4141
]
4242
++ (
4343
if pkgs.stdenv.isDarwin
44-
then [fallback.numbat]
44+
then []
4545
else [pkgs.numbat]
4646
)

pkgset/50-everything.nix

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
{pkgs}:
1+
{
2+
pkgs,
3+
fallback ? pkgs,
4+
}:
25
with pkgs; [
36
# more shells!
47
xonsh
@@ -25,7 +28,7 @@ with pkgs; [
2528
imagemagickBig
2629

2730
# cloud utils
28-
awscli2
31+
fallback.awscli2
2932

3033
# programming languages in global context
3134
python312

pkgset/99-fonts.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ with pkgs; [
55
merriweather
66

77
fira-code
8-
fira-code-nerdfont
8+
nerd-fonts.fira-code
99
iosevka
1010
iosevka-comfy.comfy
1111
departure-mono

pkgset/99-macos.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{pkgs}:
22
with pkgs; [
3-
_1password
3+
_1password-cli
44
bashInteractive
55
curl
66
gnugrep

0 commit comments

Comments
 (0)