aboutsummaryrefslogtreecommitdiffstats
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--home/nipsy/common/core/default.nix41
-rw-r--r--home/nipsy/richese.nix7
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
+ ];
+}