ssh
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{
|
||||
imports = [
|
||||
./monitor.nix
|
||||
./packages.nix
|
||||
];
|
||||
}
|
||||
15
modules/core/packages.nix
Normal file
15
modules/core/packages.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
wl-clipboard
|
||||
kitty
|
||||
vim
|
||||
wget
|
||||
git
|
||||
curl
|
||||
zsh
|
||||
];
|
||||
}
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
imports = [
|
||||
./desktop
|
||||
./home
|
||||
./core
|
||||
];
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
imports = [
|
||||
./hyprland
|
||||
./ssh.nix
|
||||
];
|
||||
}
|
||||
5
modules/home/hyprland/default.nix
Normal file
5
modules/home/hyprland/default.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
imports = [
|
||||
#./monitor.nix
|
||||
];
|
||||
}
|
||||
9
modules/home/ssh.nix
Normal file
9
modules/home/ssh.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user