blue
This commit is contained in:
parent
0d61c14991
commit
3c44ab3bbe
6 changed files with 24 additions and 5 deletions
|
|
@ -1,6 +1,12 @@
|
||||||
{ ags, pkgs, ...}: {
|
{ ags, pkgs, ...}: {
|
||||||
imports = [ ags.homeManagerModules.default ];
|
imports = [ ags.homeManagerModules.default ];
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
libdbusmenu-gtk3
|
||||||
|
networkmanager
|
||||||
|
pipewire-pulse
|
||||||
|
];
|
||||||
|
|
||||||
programs.ags = {
|
programs.ags = {
|
||||||
enable = true;
|
enable = true;
|
||||||
configDir = ./.;
|
configDir = ./.;
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,26 @@
|
||||||
{
|
{
|
||||||
user = [
|
user = [
|
||||||
./ags
|
|
||||||
|
# Graphical setup
|
||||||
|
./ags # ToDo: get codin :3
|
||||||
|
# ./waybar.nix
|
||||||
|
./hyprland
|
||||||
|
./rofi.nix
|
||||||
|
./dunst.nix
|
||||||
|
./stylix.nix
|
||||||
|
|
||||||
./alacritty.nix
|
./alacritty.nix
|
||||||
./clipman.nix
|
./clipman.nix
|
||||||
./common.nix
|
./common.nix
|
||||||
./direnv.nix
|
./direnv.nix
|
||||||
./dunst.nix
|
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
./fzf.nix
|
./fzf.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
./gpg.nix
|
./gpg.nix
|
||||||
./helix.nix
|
./helix.nix
|
||||||
./hyprland
|
|
||||||
./packages.nix
|
./packages.nix
|
||||||
./playerctld.nix
|
./playerctld.nix
|
||||||
./rofi.nix
|
|
||||||
./sops.nix
|
./sops.nix
|
||||||
./stylix.nix
|
|
||||||
./thunderbird.nix
|
./thunderbird.nix
|
||||||
./zsh
|
./zsh
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@
|
||||||
compsize
|
compsize
|
||||||
duf
|
duf
|
||||||
eza
|
eza
|
||||||
|
bat
|
||||||
file
|
file
|
||||||
htop
|
htop
|
||||||
btop
|
btop
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,7 @@ in {
|
||||||
modules = [
|
modules = [
|
||||||
./common.nix
|
./common.nix
|
||||||
./options.nix
|
./options.nix
|
||||||
|
./packages.nix
|
||||||
|
|
||||||
conf.extraConfig
|
conf.extraConfig
|
||||||
conf.hardware-configuration
|
conf.hardware-configuration
|
||||||
|
|
|
||||||
5
system/packages.nix
Normal file
5
system/packages.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
environment.packages = with pkgs; [
|
||||||
|
gnome-bluetooth
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
{...}: {
|
{...}: {
|
||||||
|
networking.firewall.allowedTCPPorts = [22];
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
ports = [22];
|
||||||
settings = {
|
settings = {
|
||||||
PermitRootLogin = "no";
|
PermitRootLogin = "no";
|
||||||
PasswordAuthentication = false;
|
PasswordAuthentication = false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue