107 lines
2.9 KiB
Nix
107 lines
2.9 KiB
Nix
{
|
|
description = "NixOS Configuration";
|
|
|
|
nixConfig = {
|
|
extra-substituters = [
|
|
"https://helix.cachix.org"
|
|
"https://hyprland.cachix.org"
|
|
"https://nix-community.cachix.org"
|
|
"https://cache.nixos.org"
|
|
];
|
|
extra-trusted-public-keys = [
|
|
"helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs="
|
|
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
|
];
|
|
};
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
impermanence.url = "github:nix-community/impermanence";
|
|
lanzaboote.url = "github:nix-community/lanzaboote";
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
|
neovim-nightly.url = "github:nix-community/neovim-nightly-overlay";
|
|
helix.url = "github:helix-editor/helix";
|
|
};
|
|
|
|
outputs =
|
|
{ self
|
|
, nixpkgs
|
|
, flake-utils
|
|
, home-manager
|
|
, impermanence
|
|
, lanzaboote
|
|
, hyprland
|
|
, neovim-nightly
|
|
, helix
|
|
,
|
|
} @ inputs:
|
|
let
|
|
secrets = import ./secrets.nix;
|
|
nixpkgs-config = {
|
|
allowUnfree = true;
|
|
};
|
|
in
|
|
{
|
|
nixosConfigurations = {
|
|
Skipper = nixpkgs.lib.nixosSystem rec {
|
|
system = "x86_64-linux";
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
config = nixpkgs-config;
|
|
overlays = [ (import ./packages) neovim-nightly.overlay hyprland.overlays.default ];
|
|
};
|
|
specialArgs = inputs // { inherit secrets; };
|
|
modules = [
|
|
{
|
|
system.configurationRevision = nixpkgs.lib.mkIf (self ? rev) self.rev;
|
|
}
|
|
|
|
home-manager.nixosModules.home-manager
|
|
impermanence.nixosModules.impermanence
|
|
lanzaboote.nixosModules.lanzaboote
|
|
|
|
./common
|
|
./hosts/skipper
|
|
|
|
{
|
|
home-manager = {
|
|
useUserPackages = true;
|
|
useGlobalPkgs = true;
|
|
extraSpecialArgs = inputs // { inherit secrets; };
|
|
users.${secrets.users.primary.userName} = { pkgs, ... }: {
|
|
imports = [
|
|
impermanence.nixosModules.home-manager.impermanence
|
|
./home
|
|
];
|
|
};
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|
|
// 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
|
|
];
|
|
};
|
|
}
|
|
);
|
|
}
|