nix-config/hosts/common/common.nix
2025-07-06 13:13:14 +02:00

70 lines
1.1 KiB
Nix

{ inputs, config, pkgs, lib, ... }:
{
imports =
[
inputs.home-manager.nixosModules.home-manager
../../modules/nix/pipewire.nix
../../modules/nix/locales.nix
../../modules/nix/grub.nix
../../modules/nix/nvf.nix
../../modules/nix/nh.nix
];
smayzy.virt.enable = true;
users.users.smayzy = {
isNormalUser = true;
description = "smayzy";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [];
};
environment.systemPackages = with pkgs; [
home-manager
wget
kitty
tldr
fastfetch
tree
font-awesome
dig
btop
thunderbird
lf
fzf
file
qalculate-qt
baobab
arduino-ide
piper
element-desktop
calibre
vlc
loupe
gimp3
mullvad-vpn
libreoffice-qt6-still
hunspellDicts.fr-any
base16-schemes
tor
wireshark
tshark
freecad-wayland
aegisub
audacity
mpv
vim
fritzing
networkmanagerapplet
grim
slurp
gparted
gnome-disk-utility
sl
];
services.ratbagd.enable = true;
}