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 = {
|
programs.thunderbird = {
|
||||||
enable = true;
|
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/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 = {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
steam
|
steam
|
||||||
lutris
|
lutris
|
||||||
vlc
|
vlc
|
||||||
|
vscodium
|
||||||
];
|
];
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
|
|
Loading…
Reference in a new issue