Update swaylock and add vscodium
This commit is contained in:
parent
8fe986c075
commit
925fb31cef
6 changed files with 16 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
{ ... }: {
|
||||
{ config, pkgs, ... }: {
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
};
|
||||
|
|
11
home-manager/common/software/gui/vscodium.nix
Normal file
11
home-manager/common/software/gui/vscodium.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ config, pkgs, ... }: {
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
waderyan.gitblame
|
||||
vscodevim.vim
|
||||
|
||||
];
|
||||
};
|
||||
}
|
|
@ -21,6 +21,7 @@
|
|||
]
|
||||
++ 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/vscodium.nix
|
||||
++ lib.optional (builtins.isString desktop) ./hosts/${hostname}/desktops/${desktop}; # Machine-specific desktop configs
|
||||
|
||||
nixpkgs = {
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
font-size = 96;
|
||||
show-failed-attempts = true;
|
||||
effect-blur = "80x4";
|
||||
effect-vignette = "0.9:0.9";
|
||||
# effect-vignette = "0.9:0.9";
|
||||
screenshots = true;
|
||||
|
||||
clock = true;
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
};
|
||||
|
||||
# Set Gnome settings:
|
||||
services.gnome = {
|
||||
services.gnome = {
|
||||
games.enable = false;
|
||||
core-utilities.enable = true;
|
||||
gnome-remote-desktop.enable = true;
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
steam
|
||||
lutris
|
||||
vlc
|
||||
vscodium
|
||||
];
|
||||
|
||||
imports = [
|
||||
|
|
Loading…
Reference in a new issue