diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-04-11 01:37:43 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-04-11 01:37:43 -0700 |
commit | 3a44b124561f544c229c0042cd0b91d055a33409 (patch) | |
tree | f466af390e895799192268a45f2516517487d672 /home | |
parent | 40d73be8797434f7a6e124ce64ae38cd28a06fd0 (diff) | |
download | nix-3a44b124561f544c229c0042cd0b91d055a33409.tar nix-3a44b124561f544c229c0042cd0b91d055a33409.tar.gz nix-3a44b124561f544c229c0042cd0b91d055a33409.tar.bz2 nix-3a44b124561f544c229c0042cd0b91d055a33409.tar.lz nix-3a44b124561f544c229c0042cd0b91d055a33409.tar.xz nix-3a44b124561f544c229c0042cd0b91d055a33409.tar.zst nix-3a44b124561f544c229c0042cd0b91d055a33409.zip |
Add work VM and redo entire flake layout
Diffstat (limited to 'home')
-rw-r--r-- | home/nipsy/common/core/default.nix | 41 | ||||
-rw-r--r-- | home/nipsy/richese.nix | 7 |
2 files changed, 13 insertions, 35 deletions
diff --git a/home/nipsy/common/core/default.nix b/home/nipsy/common/core/default.nix index 6903d90..821fbfd 100644 --- a/home/nipsy/common/core/default.nix +++ b/home/nipsy/common/core/default.nix @@ -8,7 +8,7 @@ ./tmux ./vim ./zsh - ] ++ (builtins.attrValues outputs.homeManagerModules); + ]; home = { username = lib.mkDefault "nipsy"; @@ -16,40 +16,11 @@ stateVersion = lib.mkDefault "23.11"; }; - home.packages = builtins.attrValues { - inherit (pkgs) - - borgbackup - btop - coreutils - eza - fd - findutils - fzf - jq - nix-tree - ncdu - pciutils - pfetch - pre-commit - p7zip - ripgrep - usbutils - tree - unzip - unrar - wget - zip; - }; - - nixpkgs = { - overlays = builtins.attrValues outputs.overlays; - config = { - allowUnfree = true; - # Workaround for https://github.com/nix-community/home-manager/issues/2942 - allowUnfreePredicate = (_: true); - }; - }; + #home.packages = builtins.attrValues { + # inherit (pkgs) + # wget + # zip; + #}; nix = { package = lib.mkDefault pkgs.nix; diff --git a/home/nipsy/richese.nix b/home/nipsy/richese.nix new file mode 100644 index 0000000..17d39fd --- /dev/null +++ b/home/nipsy/richese.nix @@ -0,0 +1,7 @@ +{ inputs, lib, pkgs, config, outputs, ... }: +{ + imports = [ + common/core + common/optional/desktops + ]; +} |