Added home-manager (no idea what it does)

This commit is contained in:
Benson Chu 2023-12-10 13:37:22 -06:00
parent 50ed98060a
commit 62b0aa7e0e
2 changed files with 26 additions and 1 deletions

View file

@ -1,5 +1,25 @@
{
"nodes": {
"home-manager": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1702124454,
"narHash": "sha256-+lwBEFPxQ8VM3ht6qEcR92A/M9GF6mDtAwKgPI3YgXQ=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "fa91c109b0dd12e680dd29010e262884f7b26186",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "home-manager",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1701539137,
@ -18,6 +38,7 @@
},
"root": {
"inputs": {
"home-manager": "home-manager",
"nixpkgs": "nixpkgs"
}
}

View file

@ -1,9 +1,13 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs }: {
outputs = { self, nixpkgs, ... }: {
nixosConfigurations.NixFrame = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./hosts/NixFrame/configuration.nix ];