Update swaylock and add vscodium

This commit is contained in:
iFargle 2023-08-24 19:14:42 +09:00
parent 8fe986c075
commit 925fb31cef
6 changed files with 16 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ ... }: { { config, pkgs, ... }: {
programs.thunderbird = { programs.thunderbird = {
enable = true; enable = true;
}; };

View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }: {
programs.vscode = {
enable = true;
package = pkgs.vscodium;
extensions = with pkgs.vscode-extensions; [
waderyan.gitblame
vscodevim.vim
];
};
}

View file

@ -21,6 +21,7 @@
] ]
++ lib.optional (builtins.isString desktop) ./common/software/gui/firefox.nix ++ lib.optional (builtins.isString desktop) ./common/software/gui/firefox.nix
# ++ lib.optional (builtins.isString desktop) ./common/software/gui/thunderbird.nix # ++ lib.optional (builtins.isString desktop) ./common/software/gui/thunderbird.nix
++ lib.optional (builtins.isString desktop) ./common/software/gui/vscodium.nix
++ lib.optional (builtins.isString desktop) ./hosts/${hostname}/desktops/${desktop}; # Machine-specific desktop configs ++ lib.optional (builtins.isString desktop) ./hosts/${hostname}/desktops/${desktop}; # Machine-specific desktop configs
nixpkgs = { nixpkgs = {

View file

@ -8,7 +8,7 @@
font-size = 96; font-size = 96;
show-failed-attempts = true; show-failed-attempts = true;
effect-blur = "80x4"; effect-blur = "80x4";
effect-vignette = "0.9:0.9"; # effect-vignette = "0.9:0.9";
screenshots = true; screenshots = true;
clock = true; clock = true;

View file

@ -36,7 +36,7 @@
}; };
# Set Gnome settings: # Set Gnome settings:
services.gnome = { services.gnome = {
games.enable = false; games.enable = false;
core-utilities.enable = true; core-utilities.enable = true;
gnome-remote-desktop.enable = true; gnome-remote-desktop.enable = true;

View file

@ -6,6 +6,7 @@
steam steam
lutris lutris
vlc vlc
vscodium
]; ];
imports = [ imports = [