nixplz
This commit is contained in:
parent
a239632816
commit
9b83e6552b
@ -13,6 +13,7 @@
|
|||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
steam-run
|
steam-run
|
||||||
xdg-utils
|
xdg-utils
|
||||||
|
pass
|
||||||
xdg-desktop-portal
|
xdg-desktop-portal
|
||||||
xdg-desktop-portal-gtk
|
xdg-desktop-portal-gtk
|
||||||
unstable.zoom-us
|
unstable.zoom-us
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
./packages
|
./packages
|
||||||
./ssh
|
./ssh
|
||||||
./services/ssh-office.nix
|
./services/ssh-office.nix
|
||||||
|
./services/gnome-keyring.nix
|
||||||
];
|
];
|
||||||
firefox.enable = true;
|
firefox.enable = true;
|
||||||
tmux.enable = true;
|
tmux.enable = true;
|
||||||
|
@ -69,6 +69,9 @@
|
|||||||
# Py stuff
|
# Py stuff
|
||||||
(unstable.python312.withPackages (p: with p; [
|
(unstable.python312.withPackages (p: with p; [
|
||||||
requests
|
requests
|
||||||
|
mypy
|
||||||
|
pydantic
|
||||||
|
typer
|
||||||
]))
|
]))
|
||||||
poetry
|
poetry
|
||||||
ruff
|
ruff
|
||||||
@ -76,9 +79,6 @@
|
|||||||
# Rust
|
# Rust
|
||||||
rustup
|
rustup
|
||||||
|
|
||||||
# homemade
|
|
||||||
sshotp
|
|
||||||
ssh-dresden
|
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
enableUpdateCheck = true;
|
enableUpdateCheck = true;
|
||||||
enableExtensionUpdateCheck = true;
|
enableExtensionUpdateCheck = true;
|
||||||
|
mutableExtensionsDir = true;
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
catppuccin.catppuccin-vsc
|
catppuccin.catppuccin-vsc
|
||||||
catppuccin.catppuccin-vsc-icons
|
catppuccin.catppuccin-vsc-icons
|
||||||
@ -11,6 +12,8 @@
|
|||||||
ms-python.python
|
ms-python.python
|
||||||
ms-vscode-remote.remote-ssh
|
ms-vscode-remote.remote-ssh
|
||||||
bbenoist.nix
|
bbenoist.nix
|
||||||
|
github.copilot
|
||||||
|
github.copilot-chat
|
||||||
];
|
];
|
||||||
userSettings = {
|
userSettings = {
|
||||||
"window.titleBarStyle" = "custom";
|
"window.titleBarStyle" = "custom";
|
||||||
|
6
user/services/gnome-keyring.nix
Normal file
6
user/services/gnome-keyring.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{pkgs, config, ...}:{
|
||||||
|
services.gnome-keyring = {
|
||||||
|
enable = true;
|
||||||
|
components = [pkcs11 secrets ssh];
|
||||||
|
};
|
||||||
|
}
|
@ -37,6 +37,7 @@ in
|
|||||||
Service = {
|
Service = {
|
||||||
Type = "simple";
|
Type = "simple";
|
||||||
ExecStart = "${ssh-dresden}/bin/ssh-dresden";
|
ExecStart = "${ssh-dresden}/bin/ssh-dresden";
|
||||||
|
Restart = "always";
|
||||||
};
|
};
|
||||||
Install = {
|
Install = {
|
||||||
WantedBy = [ "default.target" ];
|
WantedBy = [ "default.target" ];
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
controlMaster = "auto";
|
controlMaster = "auto";
|
||||||
|
|
||||||
matchBlocks."dresden.uio.no" = {
|
matchBlocks."d dresden dresden.uio.no" = {
|
||||||
setEnv = {
|
setEnv = {
|
||||||
TERM = "xterm-256color";
|
TERM = "xterm-256color";
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user