configuration.nix/flake.nix

58 lines
1.2 KiB
Nix
Raw Normal View History

2023-03-15 22:11:59 +05:30
{
2023-03-25 22:10:42 +05:30
description = "NixOS Configuration";
2023-03-15 22:11:59 +05:30
inputs = {
nixpkgs = {
url = "github:NixOS/nixpkgs/nixos-unstable";
};
lanzaboote = {
url = "github:nix-community/lanzaboote/master";
inputs.nixpkgs.follows = "nixpkgs";
};
impermanence = {
url = "github:nix-community/impermanence/master";
};
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
};
2023-03-25 22:10:42 +05:30
outputs = {
self,
nixpkgs,
home-manager,
impermanence,
lanzaboote,
} @ inputs: let
system = "x86_64-linux";
lib = nixpkgs.lib;
in {
formatter.${system} = nixpkgs.legacyPackages.${system}.alejandra;
2023-03-15 22:11:59 +05:30
nixosConfigurations = {
2023-03-25 22:10:42 +05:30
Skipper = lib.nixosSystem {
2023-03-25 21:40:10 +05:30
specialArgs = inputs;
2023-03-15 22:11:59 +05:30
modules = [
./system/nix.nix
{
2023-03-25 22:10:42 +05:30
nixpkgs.overlays = [(import ./packages)];
system.configurationRevision = lib.mkIf (self ? rev) self.rev;
2023-03-15 22:11:59 +05:30
}
home-manager.nixosModules.home-manager
impermanence.nixosModules.impermanence
lanzaboote.nixosModules.lanzaboote
./system
./users
./home
];
};
};
};
}