add restruct2

This commit is contained in:
cnst
2024-06-27 18:18:19 +02:00
parent 81e269fade
commit 82a4545886
20 changed files with 81 additions and 15 deletions

View File

@@ -9,7 +9,10 @@
}:
{
# You can import other home-manager modules here
imports = [ ../modules/adam.nix ];
imports = [
../core/adam.nix
../extra/adam.nix
];
nixpkgs = {
# You can add overlays here

View File

@@ -9,7 +9,10 @@
}:
{
# You can import other home-manager modules here
imports = [ ../modules/cnst.nix ];
imports = [
../core/cnst.nix
../extra/cnst.nix
];
nixpkgs = {
# You can add overlays here

View File

@@ -1,11 +1,8 @@
{ pkgs, ... }:
{
imports = [
./zellij
./firefox
./git
./hypr
./neovim
./shell/adam.nix
./appearance
];

View File

@@ -1,11 +1,8 @@
{ pkgs, ... }:
{
imports = [
./zellij
./firefox
./git
./hypr
./neovim
./shell/cnst.nix
./appearance
];

36
home/extra/adam.nix Normal file
View File

@@ -0,0 +1,36 @@
{ pkgs, ... }:
{
imports = [
./zellij
./firefox
./neovim
./mako
];
home.packages = with pkgs; [
# Desktop
alacritty
wl-clipboard
keepassxc
ranger
webcord
xfce.thunar
xfce.thunar-volman
xfce.thunar-archive-plugin
gnome.file-roller
wireguard-tools
wpa_supplicant
ntfs3g
kdePackages.polkit-kde-agent-1
networkmanagerapplet
htop
btop
pamixer
qbittorrent
fastfetch
waybar
nwg-look
thefuck
calcurse
gnome.adwaita-icon-theme
];
}

37
home/extra/cnst.nix Normal file
View File

@@ -0,0 +1,37 @@
{ pkgs, ... }:
{
imports = [
./firefox
./mako
./neovim
./zellij
];
home.packages = with pkgs; [
# Desktop
alacritty
wl-clipboard
keepassxc
ranger
webcord
xfce.thunar
xfce.thunar-volman
xfce.thunar-archive-plugin
gnome.file-roller
wireguard-tools
wpa_supplicant
ntfs3g
kdePackages.polkit-kde-agent-1
networkmanagerapplet
htop
btop
pamixer
virt-manager
qbittorrent
fastfetch
waybar
nwg-look
thefuck
calcurse
gnome.adwaita-icon-theme
];
}

View File

@@ -9,7 +9,6 @@
imports = [
inputs.home-manager.nixosModules.home-manager
./adb.nix
./neovim.nix
./zsh.nix
./adampad-pkgs.nix
./fonts.nix

View File

@@ -1,6 +0,0 @@
{
programs.neovim = {
enable = true;
defaultEditor = true;
};
}