113 lines
2.6 KiB
Nix
113 lines
2.6 KiB
Nix
{
|
|
username,
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
faceIcon = pkgs.fetchurl {
|
|
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRwExkFtlGxRWflUTcPCfneHSC8E0WuIWNbvkQ4-5_R8x4BXCYx";
|
|
hash = "sha256-OXP3iv7JOz/uhw4P90m54yY5j79gDBBVdoySFZmYAZY=";
|
|
};
|
|
|
|
monitors = [
|
|
];
|
|
in
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../modules/presets/basic.nix
|
|
|
|
# Nvidia GPU Driver
|
|
(import ../../modules/nvidia.nix {
|
|
nvidia-mode = "offload";
|
|
intel-bus-id = "PCI:0:2:0";
|
|
nvidia-bus-id = "PCI:59:0:0";
|
|
})
|
|
|
|
./boot.nix # Extra Boot Options
|
|
../../modules/gaming.nix
|
|
../../modules/wine.nix
|
|
../../modules/localsend.nix
|
|
(import ../../modules/airplay.nix { hostname = config.networking.hostName; })
|
|
# (import ../../modules/virtualization.nix { inherit username; })
|
|
# ../../modules/wireguard.nix
|
|
];
|
|
|
|
home-manager = {
|
|
users."${username}" = {
|
|
imports = [
|
|
../../../home/presets/basic.nix
|
|
|
|
{
|
|
home.file.".face" = {
|
|
source = lib.mkForce faceIcon;
|
|
};
|
|
}
|
|
|
|
# Hyprland
|
|
(import ../../../home/user/hyprland.nix { inherit monitors; })
|
|
{
|
|
wayland.windowManager.hyprland = {
|
|
settings = {
|
|
input = {
|
|
kb_options = lib.mkForce [ ];
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|
|
(import ../../../home/user/waybar.nix {
|
|
settings = [
|
|
# monitor 1
|
|
{
|
|
output = "eDP-1";
|
|
modules-left = [
|
|
"custom/os"
|
|
"hyprland/workspaces"
|
|
"clock"
|
|
"custom/cava"
|
|
"mpris"
|
|
];
|
|
modules-right = (
|
|
[
|
|
"wlr/taskbar"
|
|
]
|
|
++ (
|
|
if config.programs.gamemode.enable then
|
|
[
|
|
"custom/gamemode"
|
|
]
|
|
else
|
|
[ ]
|
|
)
|
|
++ [
|
|
# "custom/bitwarden"
|
|
"custom/airplay"
|
|
"custom/wallRand"
|
|
"custom/recording"
|
|
"idle_inhibitor"
|
|
"network"
|
|
"cpu"
|
|
"memory"
|
|
"pulseaudio"
|
|
"custom/swaync"
|
|
]
|
|
);
|
|
}
|
|
];
|
|
})
|
|
|
|
# Git
|
|
(import ../../../home/user/git.nix {
|
|
inherit username;
|
|
email = "skyblocksians@gmail.com";
|
|
})
|
|
];
|
|
};
|
|
};
|
|
|
|
users.users."${username}".openssh.authorizedKeys.keys = [
|
|
];
|
|
}
|