Compare commits

...

2 Commits

Author SHA1 Message Date
157adb2654 Update 2026-01-31 15:21:47 +01:00
deff65ad81 Fix flake 2026-01-10 19:30:40 +01:00
2 changed files with 3 additions and 4 deletions

View File

@ -17,6 +17,8 @@
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
configuration = { pkgs, ... }: { configuration = { pkgs, ... }: {
pkgs.config.allowUnfree = true;
environment.systemPackages = environment.systemPackages =
[ [
pkgs.vim pkgs.vim
@ -76,9 +78,6 @@
./user/profiles/work.nix ./user/profiles/work.nix
./common.nix ./common.nix
./user/task.nix ./user/task.nix
{
nixpkgs.config.allowUnfree = true;
}
]; ];
}; };
}; };

View File

@ -8,7 +8,7 @@
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
visidata # visidata
claude-code claude-code
]; ];
} }