homemmanegr
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
{
|
||||
imports = [
|
||||
./packages.nix
|
||||
#./packages.nix
|
||||
./ssh.nix
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
9
modules/core/ssh.nix
Normal file
9
modules/core/ssh.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
@@ -1,6 +1,9 @@
|
||||
{
|
||||
imports = [
|
||||
./hyprland
|
||||
./ssh.nix
|
||||
./git.nix
|
||||
./home-manager.nix
|
||||
./packages.nix
|
||||
./user.nix
|
||||
];
|
||||
}
|
||||
|
||||
8
modules/home/git.nix
Normal file
8
modules/home/git.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "poslop";
|
||||
userEmail = "poslop@archfox.org";
|
||||
};
|
||||
}
|
||||
5
modules/home/home-manager.nix
Normal file
5
modules/home/home-manager.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
14
modules/home/packages.nix
Normal file
14
modules/home/packages.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
neofetch
|
||||
btop
|
||||
zsh
|
||||
wl-clipboard
|
||||
kitty
|
||||
vim
|
||||
wget
|
||||
curl
|
||||
];
|
||||
}
|
||||
6
modules/home/user.nix
Normal file
6
modules/home/user.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.username = "poslop";
|
||||
home.homeDirectory = "/home/poslop";
|
||||
}
|
||||
Reference in New Issue
Block a user