nix-da/hosts/brontes/configuration.nix
2024-07-06 16:20:03 +02:00

102 lines
2 KiB
Nix

{
pkgs,
inputs,
username,
hostname,
...
}:
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
inputs.home-manager.nixosModules.home-manager
../../modules
./home.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = hostname;
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
services.blueman.enable = true;
services.flatpak.enable = true;
services.greetd = {
enable = true;
settings = rec {
initial_session = {
command = "${pkgs.greetd.greetd}/bin/agreety --cmd ${pkgs.hyprland}/bin/hyprland";
user = "${username}";
};
default_session = initial_session;
};
};
#: Power Consumption {{{
services.logind = {
powerKey = "hibernate";
};
#: }}}
xdg.portal = {
enable = true;
config.common.default = "*";
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
xdg-desktop-portal-hyprland
];
};
services.dbus.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
programs = {
steam.enable = true;
fish.enable = true;
firefox.enable = true;
thunderbird.enable = true;
hyprland.enable = true;
};
security.polkit.enable = true;
users = {
defaultUserShell = pkgs.fish;
users.${username} = {
isNormalUser = true;
createHome = true;
extraGroups = [
"networkmanager"
"wheel"
"audio"
"libvirtd" # VM OPs
"dialout" # Necessary for serial port interactions
];
shell = pkgs.fish;
};
};
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
services.gnome.gnome-keyring.enable = true;
environment.systemPackages = with pkgs; [
fish
wireguard-tools
git
htop
eza
bat
swaynotificationcenter
pipewire
wireplumber
];
system.stateVersion = "24.05";
}