removes work specific files uses unified modules

This commit is contained in:
Dennis Schoepf 2025-12-06 14:29:53 +01:00
parent 80c8cdef62
commit 8d24fc479e
12 changed files with 169 additions and 491 deletions

View file

@ -1,15 +1,18 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
nix = {
package = pkgs.nix;
settings.experimental-features = [ "nix-command" "flakes" ];
settings.experimental-features = [
"nix-command"
"flakes"
];
};
nixpkgs = {
config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
};
};
@ -33,7 +36,6 @@
lazygit
fortune
zoxide
atuin
fnm
gcc
];
@ -43,7 +45,6 @@
imports = [
../modules/git
../modules/fish
../modules/atuin
../modules/nvim/deck.nix
../modules/lazygit
];