Compare commits

...

2 Commits

Author SHA1 Message Date
mir
9a53098835 home-manager stable and unstable, split em up 2024-03-02 19:49:24 -09:00
mir
87181f1cae insignificatnt change; prev commit is good 2024-03-02 19:46:31 -09:00
2 changed files with 45 additions and 4 deletions

View File

@ -56,6 +56,25 @@
"inputs": {
"nixpkgs": "nixpkgs_2"
},
"locked": {
"lastModified": 1706981411,
"narHash": "sha256-cLbLPTL1CDmETVh4p0nQtvoF+FSEjsnJTFpTxhXywhQ=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "652fda4ca6dafeb090943422c34ae9145787af37",
"type": "github"
},
"original": {
"owner": "nix-community",
"ref": "release-23.11",
"repo": "home-manager",
"type": "github"
}
},
"home-manager-unstable": {
"inputs": {
"nixpkgs": "nixpkgs_3"
},
"locked": {
"lastModified": 1709204054,
"narHash": "sha256-U1idK0JHs1XOfSI1APYuXi4AEADf+B+ZU4Wifc0pBHk=",
@ -103,6 +122,22 @@
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1709309926,
"narHash": "sha256-VZFBtXGVD9LWTecGi6eXrE0hJ/mVB3zGUlHImUs2Qak=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "79baff8812a0d68e24a836df0a364c678089e2c7",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-23.11",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_3": {
"locked": {
"lastModified": 1708118438,
"narHash": "sha256-kk9/0nuVgA220FcqH/D2xaN6uGyHp/zoxPNUmPCMmEE=",
@ -118,7 +153,7 @@
"type": "github"
}
},
"nixpkgs_3": {
"nixpkgs_4": {
"locked": {
"lastModified": 1701282334,
"narHash": "sha256-MxCVrXY6v4QmfTwIysjjaX0XUhqBbxTWWB4HXtDYsdk=",
@ -139,7 +174,8 @@
"apple-silicon": "apple-silicon",
"emacs-config": "emacs-config",
"home-manager": "home-manager",
"nixpkgs": "nixpkgs_3",
"home-manager-unstable": "home-manager-unstable",
"nixpkgs": "nixpkgs_4",
"nixpkgs-unstable": "nixpkgs-unstable"
}
},

View File

@ -7,9 +7,13 @@
url = "github:tpwrules/nixos-apple-silicon";
};
home-manager = {
url = "github:nix-community/home-manager"; #/release-23.11";
url = "github:nix-community/home-manager/release-23.11";
# inputs.nixpkgs.follows = "nixpkgs";
};
home-manager-unstable = {
url = "github:nix-community/home-manager"; #/release-23.11";
inputs.nixpkgs-unstable.follows = "nixpkgs";
};
emacs-config = {
url = "git+https://git.marq42.xyz/mir/emacs?ref=main";
flake = false;
@ -19,7 +23,8 @@
self,
nixpkgs,
nixpkgs-unstable,
home-manager, ... }: {
home-manager,
... }: {
nixosConfigurations = {
galvatron = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";