nix-config/hosts/common/common.nix

72 lines
1.0 KiB
Nix

{ inputs, config, pkgs, lib, ... }:
{
imports =
[
inputs.home-manager.nixosModules.home-manager
../../modules/nix/default.nix
];
smayzy.virt.enable = true;
smayzy.nh.enable = true;
smayzy.nvf.enable = true;
smayzy.audio.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;
}