This commit is contained in:
2025-05-01 13:33:43 -05:00
parent c18886cd32
commit ff074185b6
9 changed files with 34 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
{
imports = [
./monitor.nix
./packages.nix
];
}

15
modules/core/packages.nix Normal file
View File

@@ -0,0 +1,15 @@
{
pkgs,
...
}:
{
environment.systemPackages = with pkgs; [
wl-clipboard
kitty
vim
wget
git
curl
zsh
];
}

View File

@@ -1,5 +1,6 @@
{
imports = [
./desktop
./home
./core
];
}

View File

@@ -1,5 +1,6 @@
{
imports = [
./hyprland
./ssh.nix
];
}

View File

@@ -0,0 +1,5 @@
{
imports = [
#./monitor.nix
];
}

9
modules/home/ssh.nix Normal file
View File

@@ -0,0 +1,9 @@
{
pkgs,
...
}:
{
services.openssh = {
enable = true;
};
}