Updated flake (itinerary doesn't work)

This commit is contained in:
EsVagy42 2025-10-29 19:56:35 +01:00
parent 6b0afb428e
commit 6bff645b4a
4 changed files with 40 additions and 11 deletions

View file

@ -3,6 +3,7 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixpkgs-working-itinerary.url = "github:nixos/nixpkgs/cf3f5c4def3c7b5f1fc012b3d839575dbe552d43";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
@ -21,6 +22,7 @@
outputs =
{
nixpkgs,
nixpkgs-working-itinerary,
home-manager,
plasma-manager,
nixvim,
@ -38,6 +40,15 @@
nixosConfigurations = {
nixos = lib.nixosSystem {
inherit system;
specialArgs = {
pkgs-working-itinerary = import nixpkgs-working-itinerary {
inherit system;
config.allowUnfree = false;
config.permittedInsecurePackages = [
"olm-3.2.16"
];
};
};
modules = [
{
environment.systemPackages = [ inputs.nixvim.packages.${system}.default ];