liminalOS/flake.nix

73 lines
2.3 KiB
Nix
Raw Normal View History

2024-07-11 03:56:19 -07:00
{
description = "System configuration flake.";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2024-07-11 03:56:19 -07:00
home-manager = {
url = "github:nix-community/home-manager";
2024-07-11 03:56:19 -07:00
inputs.nixpkgs.follows = "nixpkgs";
};
stablepkgs.url = "github:nixos/nixpkgs/nixos-24.05";
bleedingpkgs.url = "github:nixos/nixpkgs/master";
2024-07-11 17:25:22 -07:00
catppuccin.url = "github:catppuccin/nix";
2024-07-12 15:21:32 -07:00
lanzaboote = {
url = "github:nix-community/lanzaboote/v0.4.1";
# Optional but recommended to limit the size of your system closure.
inputs.nixpkgs.follows = "nixpkgs";
};
lix-module = {
2024-08-01 01:50:48 -07:00
url =
"https://git.lix.systems/lix-project/nixos-module/archive/2.90.0.tar.gz";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-07-11 03:56:19 -07:00
};
2024-08-01 01:50:48 -07:00
outputs = { self, nixpkgs, home-manager, catppuccin, lanzaboote, stablepkgs
, bleedingpkgs, lix-module, ... }@inputs: {
2024-07-21 19:02:10 -07:00
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt;
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
system = "x86_64-linux";
modules = [
./configuration.nix
2024-07-12 15:21:32 -07:00
2024-07-21 19:02:10 -07:00
catppuccin.nixosModules.catppuccin
2024-07-11 17:25:22 -07:00
lix-module.nixosModules.default
2024-07-21 19:02:10 -07:00
lanzaboote.nixosModules.lanzaboote
({ pkgs, lib, ... }: {
environment.systemPackages = [
# For debugging and troubleshooting Secure Boot.
pkgs.sbctl
];
2024-07-12 15:21:32 -07:00
2024-07-21 19:02:10 -07:00
# Lanzaboote currently replaces the systemd-boot module.
# This setting is usually set to true in configuration.nix
# generated at installation time. So we force it to false
# for now.
boot.loader.systemd-boot.enable = lib.mkForce false;
2024-07-12 15:21:32 -07:00
2024-07-21 19:02:10 -07:00
boot.lanzaboote = {
enable = true;
pkiBundle = "/etc/secureboot";
};
})
2024-07-12 15:21:32 -07:00
{ nixpkgs.overlays = [ (self: super: { }) ]; }
2024-07-21 19:02:10 -07:00
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.backupFileExtension = "backup";
home-manager.users.youwen = {
imports = [ ./home.nix catppuccin.homeManagerModules.catppuccin ];
};
}
];
};
2024-07-11 03:56:19 -07:00
};
}