update nixpkgs, home-manager, remove root password, refactor, use tmpfs, c2: use disk labels
This commit is contained in:
parent
59a71b5cf2
commit
62d3765e58
8 changed files with 109 additions and 39 deletions
12
flake.nix
12
flake.nix
|
|
@ -1,10 +1,18 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ self, nixpkgs }@inputs:
|
||||
{
|
||||
self,
|
||||
nixpkgs,
|
||||
home-manager,
|
||||
}@inputs:
|
||||
let
|
||||
lib = nixpkgs.lib;
|
||||
mod = import ./mod { inherit lib; };
|
||||
|
|
@ -25,6 +33,6 @@
|
|||
};
|
||||
};
|
||||
|
||||
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt-rfc-style;
|
||||
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt-tree;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue