dotfiles/nixos/gui/default.nix

92 lines
1.9 KiB
Nix
Raw Normal View History

2022-12-19 09:09:08 +00:00
{
config,
pkgs,
discord,
inputs,
nixpkgs-nixos-stable-and-unfree,
nixpkgs-nixos-unstable-and-unfree,
...
}: let
2022-07-03 18:50:30 +01:00
unstable = inputs.nixpkgs-nixos-unstable.legacyPackages.${pkgs.system};
nixpkgs-master = inputs.nixpkgs-master.legacyPackages.${pkgs.system};
2022-03-10 12:25:23 +00:00
in {
2022-03-06 10:01:07 +00:00
security.chromiumSuidSandbox.enable = true;
2022-12-19 09:09:08 +00:00
home-manager.users.cyryl = {...}: {
2022-01-25 22:27:36 +00:00
gtk = {
enable = true;
iconTheme = {
name = "Adwaita";
package = pkgs.gnome3.adwaita-icon-theme;
2020-07-25 10:09:10 +01:00
};
2022-01-25 22:27:36 +00:00
};
qt = {
enable = true;
platformTheme = "gnome";
style.name = "adwaita-dark";
style.package = pkgs.adwaita-qt;
};
2020-07-25 10:09:10 +01:00
2022-12-19 09:09:08 +00:00
imports = [];
2020-07-25 10:09:10 +01:00
2022-04-09 18:26:42 +01:00
programs.chromium.enable = true;
2022-07-07 21:00:10 +01:00
programs.firefox.enable = true;
2022-03-10 12:25:23 +00:00
home.packages = with pkgs;
2022-12-19 09:09:08 +00:00
with pkgs.gnome3;
with pkgs.python38Packages;
2022-03-10 12:25:23 +00:00
[
anarchism
2022-11-19 23:11:35 +00:00
calibre
2022-03-10 12:25:23 +00:00
cheese
digikam
electrum
element-desktop
eog
evince
fontconfig
freecad
ghidra-bin
gimp
glxinfo
gnome-screenshot
2022-08-22 21:14:20 +01:00
gparted
2022-03-10 12:25:23 +00:00
inkscape
libreoffice
mindforger
modem-manager-gui
nautilus
nyxt
obs-studio
openscad
passff-host
pdfarranger
2022-08-22 21:14:20 +01:00
pkgs.gsettings-desktop-schemas
pkgs.shotwell
2022-03-10 12:25:23 +00:00
qcad
qemu
remmina
signal-desktop
simple-scan
ssb-patchwork
tlaplusToolbox
tlaps
2022-08-22 21:14:20 +01:00
uefitool
2022-03-10 12:25:23 +00:00
vlc
2022-05-28 20:06:00 +01:00
winePackages.full
2022-03-10 12:25:23 +00:00
wireshark
wsjtx
xclip
xidlehook
yubico-piv-tool
yubikey-manager-qt
yubikey-personalization
yubikey-personalization-gui
2022-12-19 09:09:08 +00:00
]
++ [unstable.gnucash unstable.thunderbird]
++ [
2022-10-23 10:51:00 +01:00
nixpkgs-nixos-stable-and-unfree.discord
2022-03-10 12:25:23 +00:00
nixpkgs-nixos-unstable-and-unfree.hopper
];
2022-01-25 22:27:36 +00:00
};
}