aboutsummaryrefslogtreecommitdiff
path: root/util/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'util/flake.nix')
-rw-r--r--util/flake.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/util/flake.nix b/util/flake.nix
deleted file mode 100644
index 7d736c9..0000000
--- a/util/flake.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- description = "Nixos config flake";
-
- inputs = {
- nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
-
- #disko = {
- # url = "github:nix-community/disko";
- # inputs.nixpkgs.follows = "nixpkgs";
- #};
-
- impermanence = {
- url = "github:nix-community/impermanence";
- };
-
- home-manager = {
- url = "github:nix-community/home-manager";
- inputs.nixpkgs.follows = "nixpkgs";
- };
- };
-
- outputs = {nixpkgs, ...} @ inputs:
- {
- nixosConfigurations.default = nixpkgs.lib.nixosSystem {
- specialArgs = {inherit inputs;};
- modules = [
- #inputs.disko.nixosModules.default
- #(import ./disko.nix { device = "/dev/vda"; })
-
- ./configuration.nix
-
- inputs.home-manager.nixosModules.default
- inputs.impermanence.nixosModules.impermanence
- ];
- };
- };
-}