configuration.nix/flake.nix

121 lines
2.7 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";
};
2023-08-05 14:36:01 +05:30
flake-utils = {
url = "github:numtide/flake-utils";
};
2023-04-01 23:20:13 +05:30
home-manager = {
2023-04-02 00:30:38 +05:30
url = "github:nix-community/home-manager";
2023-03-15 22:11:59 +05:30
inputs.nixpkgs.follows = "nixpkgs";
};
impermanence = {
2023-04-02 00:30:38 +05:30
url = "github:nix-community/impermanence";
2023-03-15 22:11:59 +05:30
};
2023-04-01 23:20:13 +05:30
lanzaboote = {
url = "github:nix-community/lanzaboote";
2023-11-03 19:17:33 +05:30
inputs = {
flake-utils.follows = "flake-utils";
nixpkgs.follows = "nixpkgs";
};
2023-04-01 23:20:13 +05:30
};
2023-07-28 16:24:59 +05:30
2023-08-04 18:04:51 +05:30
nixvim = {
url = "github:nix-community/nixvim";
2023-11-03 19:17:33 +05:30
inputs = {
flake-utils.follows = "flake-utils";
nixpkgs.follows = "nixpkgs";
};
2023-08-04 18:04:51 +05:30
};
flake_env = {
url = "git+https://git.sr.ht/~bryan_bennett/flake_env";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
2023-03-15 22:11:59 +05:30
};
2023-11-04 16:12:45 +05:30
outputs =
{ self
, nixpkgs
, flake-utils
, home-manager
, impermanence
, lanzaboote
, nixvim
, flake_env
2023-11-04 16:12:45 +05:30
,
} @ inputs:
let
secrets = import ./secrets.nix;
nixpkgs-config = {
allowUnfree = true;
};
in
2023-08-05 14:36:01 +05:30
{
nixosConfigurations = {
Skipper = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
2023-09-24 03:39:32 +05:30
config = nixpkgs-config;
2023-11-04 16:12:45 +05:30
overlays = [ (import ./packages) ];
};
2023-11-04 16:12:45 +05:30
specialArgs = inputs // { inherit secrets; };
2023-08-05 14:36:01 +05:30
modules = [
{
system.configurationRevision = nixpkgs.lib.mkIf (self ? rev) self.rev;
}
2023-04-10 23:07:41 +05:30
2023-08-05 14:36:01 +05:30
home-manager.nixosModules.home-manager
impermanence.nixosModules.impermanence
lanzaboote.nixosModules.lanzaboote
2023-04-10 23:07:41 +05:30
2023-08-05 14:36:01 +05:30
./common
./hosts/skipper
2023-08-05 14:36:01 +05:30
{
home-manager = {
useUserPackages = true;
useGlobalPkgs = true;
2024-01-04 21:51:29 +05:30
extraSpecialArgs = inputs // { inherit secrets; };
2023-11-04 16:12:45 +05:30
users.${secrets.users.primary.userName} = { pkgs, ... }: {
2023-08-05 14:36:01 +05:30
imports = [
impermanence.nixosModules.home-manager.impermanence
nixvim.homeManagerModules.nixvim
./home
];
};
};
2023-08-05 14:36:01 +05:30
}
];
};
2023-03-15 22:11:59 +05:30
};
2023-08-05 14:36:01 +05:30
}
2024-01-04 21:51:32 +05:30
// flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
in
with pkgs; {
formatter = nixpkgs-fmt;
devShells.default = mkShell {
buildInputs = [
git
git-crypt
statix
];
};
}
2023-08-05 14:36:01 +05:30
);
2023-03-15 22:11:59 +05:30
}