Compare commits
3 commits
7a199eb540
...
5ea2cc81d0
Author | SHA1 | Date | |
---|---|---|---|
5ea2cc81d0 | |||
58d04e60f5 | |||
08d1980c69 |
2 changed files with 45 additions and 1 deletions
|
@ -20,6 +20,14 @@
|
||||||
# Nix
|
# Nix
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
services.openvpn.servers = {
|
||||||
|
htb = {
|
||||||
|
config = ''
|
||||||
|
config /root/openvpn/htb.ovpn
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
age.secrets = {
|
age.secrets = {
|
||||||
wg0Private.file = ../../secrets/london-wg0.age;
|
wg0Private.file = ../../secrets/london-wg0.age;
|
||||||
personalMailPwd = {
|
personalMailPwd = {
|
||||||
|
@ -112,5 +120,38 @@
|
||||||
"${pkgs.coreutils}/bin/cat ${config.age.secrets.publicMailPwd.path}";
|
"${pkgs.coreutils}/bin/cat ${config.age.secrets.publicMailPwd.path}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
florine = {
|
||||||
|
description = "Florine";
|
||||||
|
uid = 1001;
|
||||||
|
shell = pkgs.fish;
|
||||||
|
groups = [
|
||||||
|
"video"
|
||||||
|
"audio"
|
||||||
|
"seat"
|
||||||
|
"keys"
|
||||||
|
"dialout"
|
||||||
|
"network"
|
||||||
|
];
|
||||||
|
|
||||||
|
hmConfig = {
|
||||||
|
my.desktop.sway.monitors = [
|
||||||
|
{
|
||||||
|
name = "Iiyama North America PL2470H 0x0000047B";
|
||||||
|
resolution = "1920x1080@165.003Hz";
|
||||||
|
position = "1920 0";
|
||||||
|
defaultWorkspace = 1;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "Iiyama North America PL2530H 1154392601941";
|
||||||
|
resolution = "1920x1080@74.973Hz";
|
||||||
|
position = "0 0";
|
||||||
|
defaultWorkspace = 2;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
my.games.wine.enable = true;
|
||||||
|
my.games.steam.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,10 @@ in
|
||||||
wrapperFeatures.gtk = true;
|
wrapperFeatures.gtk = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.steam.enable = anySteamUser;
|
programs.steam = {
|
||||||
|
enable = anySteamUser;
|
||||||
|
remotePlay.openFirewall = true;
|
||||||
|
};
|
||||||
hardware.steam-hardware.enable = anySteamUser;
|
hardware.steam-hardware.enable = anySteamUser;
|
||||||
|
|
||||||
xdg.portal = mkIf anySwayUser {
|
xdg.portal = mkIf anySwayUser {
|
||||||
|
|
Loading…
Add table
Reference in a new issue