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 # You can import other home-manager modules here
imports = [ ../modules/adam.nix ]; imports = [
../core/adam.nix
../extra/adam.nix
];
nixpkgs = { nixpkgs = {
# You can add overlays here # You can add overlays here

View File

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

View File

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

View File

@@ -1,11 +1,8 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
imports = [ imports = [
./zellij
./firefox
./git ./git
./hypr ./hypr
./neovim
./shell/cnst.nix ./shell/cnst.nix
./appearance ./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 = [ imports = [
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
./adb.nix ./adb.nix
./neovim.nix
./zsh.nix ./zsh.nix
./adampad-pkgs.nix ./adampad-pkgs.nix
./fonts.nix ./fonts.nix

View File

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