Compare commits

...

4 commits

Author SHA1 Message Date
0fd18deca3
hosts/temperance: progam updates 2025-07-09 22:12:16 +02:00
d409f61226
brave: add links to sources 2025-07-09 22:11:53 +02:00
190323c198
niri: add playerctl to pkgs 2025-07-09 22:11:42 +02:00
1abab409f8
users: set default shell to nushell 2025-07-09 22:11:27 +02:00
4 changed files with 6 additions and 5 deletions

View file

@ -10,12 +10,10 @@
cachix cachix
calc calc
calibre calibre
cinny-desktop
comma comma
digikam digikam
difftastic difftastic
dnsutils dnsutils
devenv
evince evince
gcc gcc
gh gh
@ -41,7 +39,6 @@
logiops logiops
mpv mpv
nautilus nautilus
nheko
nicotine-plus nicotine-plus
obsidian obsidian
oculante oculante
@ -60,6 +57,7 @@
rmpc rmpc
ruby_3_2 ruby_3_2
signal-desktop signal-desktop
spotify
strawberry strawberry
telegram-desktop telegram-desktop
texliveFull texliveFull
@ -68,6 +66,7 @@
trash-cli trash-cli
tutanota-desktop tutanota-desktop
typst typst
vesktop
walker walker
wayneko wayneko
wireguard-tools wireguard-tools

View file

@ -74,7 +74,7 @@ in {
"docker" "docker"
]; ];
# shell = self.packages.${pkgs.stdenv.system}.fish; # shell = self.packages.${pkgs.stdenv.system}.fish;
shell = pkgs.zsh; shell = pkgs.nushell;
# hashedPasswordFile = "/etc/passwords/cr"; # hashedPasswordFile = "/etc/passwords/cr";
}; };
# root.hashedPasswordFile = "/persist/passwords/root"; # root.hashedPasswordFile = "/persist/passwords/root";

View file

@ -6,6 +6,7 @@
inherit (lib.lists) map; inherit (lib.lists) map;
inherit (lib.strings) concatStringsSep; inherit (lib.strings) concatStringsSep;
# https://peter.sh/experiments/chromium-command-line-switches/
flags = concatStringsSep " " [ flags = concatStringsSep " " [
"--no-first-run" "--no-first-run"
"--use-vulkan" "--use-vulkan"
@ -42,6 +43,7 @@ in {
# which facilitated this process a lot: # which facilitated this process a lot:
# https://gist.github.com/yashgorana/869542b66d7188729716379abe7464e0 # https://gist.github.com/yashgorana/869542b66d7188729716379abe7464e0
# https://github.com/yashgorana/chrome-debloat # https://github.com/yashgorana/chrome-debloat
# https://chromeenterprise.google/intl/en_ca/policies
extraOpts = { extraOpts = {
BraveRewardsDisabled = true; BraveRewardsDisabled = true;
BraveWalletDisabled = true; BraveWalletDisabled = true;

View file

@ -67,7 +67,7 @@ in {
environment.etc."niri/config.kdl".source = ./config.kdl; environment.etc."niri/config.kdl".source = ./config.kdl;
environment.systemPackages = builtins.attrValues { environment.systemPackages = builtins.attrValues {
inherit (pkgs) xwayland-satellite avizo; inherit (pkgs) xwayland-satellite avizo playerctl;
inherit new-swww; inherit new-swww;
}; };
}; };