This commit is contained in:
Bryan Ramos 2023-05-31 09:58:09 -04:00
parent 965a0f5994
commit 5989e43c87
3 changed files with 28 additions and 1 deletions

21
flake.lock generated
View file

@ -1,5 +1,25 @@
{
"nodes": {
"disko": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1685450011,
"narHash": "sha256-/Az50GoWePZHL+Pkxy2ZuKW9zwIk+oVdzkR9xWomnpo=",
"owner": "nix-community",
"repo": "disko",
"rev": "0d270372b21818eba342954220c1a30a7bdaba19",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "disko",
"type": "github"
}
},
"home-manager": {
"inputs": {
"nixpkgs": [
@ -39,6 +59,7 @@
},
"root": {
"inputs": {
"disko": "disko",
"home-manager": "home-manager",
"nixpkgs": "nixpkgs"
}

View file

@ -7,9 +7,13 @@
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, home-manager }:
outputs = { self, nixpkgs, home-manager, disko }:
let
system = "x86_64-linux";
@ -26,6 +30,7 @@
inherit system;
modules = [
./sysConfig
disko.nixosModules.disko
];
};

1
sysConfig/disks.nix Normal file
View file

@ -0,0 +1 @@
#TBD