dotfiles/nixos/gui/default.nix

85 lines
1.8 KiB
Nix
Raw Normal View History

2024-03-16 09:11:37 +00:00
{ config, pkgs, discord, inputs, nixpkgs-nixos-unstable
, nixpkgs-nixos-stable-and-unfree, nixpkgs-nixos-unstable-and-unfree, ... }: {
2022-03-06 10:01:07 +00:00
security.chromiumSuidSandbox.enable = true;
2024-03-16 09:11:37 +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
};
2024-03-16 09:11:37 +00:00
qt = { enable = true; };
2020-07-25 10:09:10 +01:00
2024-03-16 09:11:37 +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;
2024-03-16 09:11:37 +00:00
home.packages = (with pkgs;
with pkgs.gnome3;
with pkgs.python39Packages; [
anarchism
calibre
cheese
digikam
electrum
element-desktop
eog
evince
fontconfig
ghidra-bin
gimp
glxinfo
gnome-screenshot
gparted
inkscape
kdenlive
koreader
krusader
libreoffice
2024-04-09 16:35:46 +01:00
logseq
2024-03-16 09:11:37 +00:00
mediainfo
2024-04-14 18:05:13 +01:00
mendeley
2024-03-16 09:11:37 +00:00
mindforger
modem-manager-gui
nautilus
nyxt
obs-studio
openscad
2024-04-09 16:35:46 +01:00
organicmaps
2024-03-16 09:11:37 +00:00
passff-host
pdfarranger
pkgs.gsettings-desktop-schemas
pkgs.shotwell
qcad
qemu
remmina
signal-desktop
simple-scan
spotify
ssb-patchwork
tigervnc
tlaplusToolbox
tlaps
uefitool
vlc
winePackages.full
wireshark
wsjtx
xclip
xidlehook
yubico-piv-tool
yubikey-manager-qt
yubikey-personalization
yubikey-personalization-gui
2024-03-27 19:34:34 +00:00
]) ++ (with nixpkgs-nixos-unstable; [ thunderbird ])
2024-03-16 09:11:37 +00:00
++ [ nixpkgs-nixos-stable-and-unfree.discord ]
++ (with nixpkgs-nixos-unstable-and-unfree; [
hopper
jetbrains.rust-rover
jetbrains.clion
]);
2022-01-25 22:27:36 +00:00
};
}