mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-08 01:07:23 +08:00
gnome keyring
This commit is contained in:
parent
39315a1254
commit
3e4d388c60
3 changed files with 19 additions and 8 deletions
|
|
@ -1,4 +1,8 @@
|
|||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
./vscode.nix
|
||||
];
|
||||
|
||||
# Apps I use on desktops and laptops
|
||||
environment.systemPackages = with pkgs; [
|
||||
brave
|
||||
|
|
@ -8,7 +12,6 @@
|
|||
simplescreenrecorder
|
||||
obs-studio
|
||||
|
||||
vscode
|
||||
vlc
|
||||
qbittorrent
|
||||
|
||||
|
|
|
|||
14
features/desktopish/vscode.nix
Normal file
14
features/desktopish/vscode.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ pkgs, inputs, ... }: {
|
||||
imports = [
|
||||
inputs.nixos-vscode-server.nixosModules.system
|
||||
];
|
||||
services.auto-fix-vscode-server.enable = true;
|
||||
|
||||
# https://unix.stackexchange.com/q/659901/14042
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
vscode
|
||||
nodejs-14_x # Need this for https://nixos.wiki/wiki/Vscode server
|
||||
];
|
||||
}
|
||||
|
|
@ -71,7 +71,7 @@
|
|||
[
|
||||
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-p53
|
||||
./features/server/harden.nix
|
||||
./features/server/devserver.nix
|
||||
# ./features/server/devserver.nix
|
||||
./features/server/unlaptop.nix
|
||||
./features/server/wakeonlan.nix
|
||||
./features/kde.nix
|
||||
|
|
@ -95,12 +95,6 @@
|
|||
./features/protonvpn.nix
|
||||
#./features/ema/emanote.nix
|
||||
];
|
||||
thebeast = mkComputer
|
||||
./hosts/thebeast.nix
|
||||
[
|
||||
./features/server/devserver.nix
|
||||
./features/ema/emanote.nix
|
||||
];
|
||||
};
|
||||
|
||||
# non-NixOS systems
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue