Compare commits

..

No commits in common. "24b7435c7ba6e10310849fbd517372a6d865bd51" and "cd028aaf038f3608f2eba0cb84e269b1beaba038" have entirely different histories.

3 changed files with 17 additions and 17 deletions

24
flake.lock generated
View file

@ -109,11 +109,11 @@
]
},
"locked": {
"lastModified": 1765859973,
"narHash": "sha256-LN5O0h9GSgcDE/sz4+sLS3CbQALru1x4lh9hrxpeHwI=",
"lastModified": 1764536451,
"narHash": "sha256-BgtcUkBfItu9/yU14IgUaj4rYOanTOUZjUfBP20/ZB4=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "7df150f0d3857cf68dae443813b27acfb201b2d8",
"rev": "3fdd076e08049a9c7a83149b270440d9787d2df5",
"type": "github"
},
"original": {
@ -155,18 +155,18 @@
"type": "github"
}
},
"nixpkgs-unstable": {
"nixpkgs-unstable-small": {
"locked": {
"lastModified": 1765779637,
"narHash": "sha256-KJ2wa/BLSrTqDjbfyNx70ov/HdgNBCBBSQP3BIzKnv4=",
"lastModified": 1742541432,
"narHash": "sha256-hPzDbmo3T64R1rt8i8WonR/4VrSbE8ZxY6wFIguC4sc=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "1306659b587dc277866c7b69eb97e5f07864d8c4",
"rev": "fa6ab1d7fdf29a4ff0ac65f01ffdaea84f105280",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"ref": "nixos-unstable-small",
"repo": "nixpkgs",
"type": "github"
}
@ -189,11 +189,11 @@
},
"nixpkgs_3": {
"locked": {
"lastModified": 1765838191,
"narHash": "sha256-m5KWt1nOm76ILk/JSCxBM4MfK3rYY7Wq9/TZIIeGnT8=",
"lastModified": 1764522689,
"narHash": "sha256-SqUuBFjhl/kpDiVaKLQBoD8TLD+/cTUzzgVFoaHrkqY=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "c6f52ebd45e5925c188d1a20119978aa4ffd5ef6",
"rev": "8bb5646e0bed5dbd3ab08c7a7cc15b75ab4e1d0f",
"type": "github"
},
"original": {
@ -211,7 +211,7 @@
"home-manager": "home-manager_2",
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_3",
"nixpkgs-unstable": "nixpkgs-unstable"
"nixpkgs-unstable-small": "nixpkgs-unstable-small"
}
},
"systems": {

View file

@ -8,11 +8,11 @@
ref = "nixos-25.11";
};
nixpkgs-unstable = {
nixpkgs-unstable-small = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "nixos-unstable";
ref = "nixos-unstable-small";
};
agenix = {
@ -70,7 +70,7 @@
};
nix-registry = {
nix.registry.nixpkgs.flake = nixpkgs;
nix.registry.unstable.flake = inputs.nixpkgs-unstable;
nix.registry.unstable.flake = inputs.nixpkgs-unstable-small;
};
};
@ -84,7 +84,7 @@
packages = import ./pkgs {pkgs = super;};
# packages accessible through pkgs.unstable.package
unstable = import inputs.nixpkgs-unstable {
unstable = import inputs.nixpkgs-unstable-small {
inherit system;
config.allowUnfree = true;
};

View file

@ -1,6 +1,6 @@
{pkgs, ...}: {
home.packages = [
pkgs.unstable.jujutsu
pkgs.jujutsu
];
xdg.configFile = {
"jj/config.toml".source = ./jj/config.toml;