Skip to content

Commit

Permalink
Flake update and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
joinemm committed Jan 6, 2025
1 parent 7591b0c commit dba869f
Show file tree
Hide file tree
Showing 10 changed files with 87 additions and 100 deletions.
92 changes: 46 additions & 46 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions hosts/cobalt/5700XT.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
power_cap: 220.0
performance_level: auto
max_core_clock: 2000
max_memory_clock: 900
max_voltage: 1100
max_memory_clock: 850
max_voltage: 1110
'';
}
3 changes: 2 additions & 1 deletion hosts/cobalt/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
])
(with self.nixosModules; [
desktop
virtualization
# https://github.com/NixOS/nixpkgs/pull/370304
# virtualization
zfs
airvpn
])
Expand Down
1 change: 1 addition & 0 deletions modules/airvpn.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
};

networking.wg-quick.interfaces."airvpn" = {
autostart = false;
address = [
"10.138.209.189/32"
"fd7d:76ee:e68f:a993:36:bd75:6ac8:7c65/128"
Expand Down
2 changes: 1 addition & 1 deletion modules/gaming.nix
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ in
gst_all_1.gst-vaapi
]
++ [
inputs.nix-gaming.packages.${pkgs.system}.wine-ge
inputs.nix-gaming.packages.${pkgs.system}.wine-tkg
game-wrapper
];
}
4 changes: 0 additions & 4 deletions modules/home/discord/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@
outputHash = "sha256-K+VHyBOZPWL5OhhcrqdUb2ieTICfS6kyBIC1L+AbMR0=";
});

# Stop crashing when settings are read-only
# https://github.com/Vencord/Vesktop/issues/220
patches = (prev.patches or [ ]) ++ [ ./readonlyFix.patch ];

# Patch the desktop file to use discord icon
desktopItems = [
(pkgs.makeDesktopItem {
Expand Down
17 changes: 0 additions & 17 deletions modules/home/discord/readonlyFix.patch

This file was deleted.

58 changes: 31 additions & 27 deletions modules/home/email.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,36 +7,40 @@
profiles."default".isDefault = true;
};

accounts.email.maildirBasePath = "mail";
accounts.email =
let
migadu = {
imap = {
host = "imap.migadu.com";
port = 993;
};
smtp = {
host = "smtp.migadu.com";
port = 465;
};

accounts.email.accounts = {
"[email protected]" = {
primary = true;
thunderbird.enable = true;
realName = "Joinemm";
address = "[email protected]";
userName = "[email protected]";
signature.text = "Joinemm";

imap = {
host = "imap.migadu.com";
port = 993;
};
smtp = {
host = "smtp.migadu.com";
port = 465;
tls.useStartTls = true;
};
};
};
in
{
maildirBasePath = "mail";
accounts = {

"[email protected]" = {
realName = "Joonas Rautiola";
address = "[email protected]";
userName = "[email protected]";
signature.text = "Joonas";
thunderbird.enable = true;
primary = true;
} // migadu;

accounts.calendar.accounts = {
"personal" = {
remote = {
type = "caldav";
url = "https://dav.joinemm.dev";
userName = "joonas";
"[email protected]" = {
realName = "Joinemm";
address = "[email protected]";
userName = "[email protected]";
signature.text = "Joinemm";
thunderbird.enable = true;
} // migadu;
};
};
};
}
4 changes: 3 additions & 1 deletion modules/home/ssh-personal.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
programs.ssh = {
enable = true;
matchBlocks = {
miso = {
miso-old = {
hostname = "5.161.128.99";
user = "root";
};

miso.hostname = "5.161.235.21";
oxygen.hostname = "65.21.249.145";
hydrogen.hostname = " 65.108.222.239";
zinc.hostname = "192.168.1.3";
Expand Down
2 changes: 1 addition & 1 deletion modules/home/zen.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ inputs, pkgs, ... }:
{
home.packages = [ inputs.zen-browser.packages."${pkgs.system}".specific ];
home.packages = [ inputs.zen-browser.packages."${pkgs.system}".default ];
}

0 comments on commit dba869f

Please sign in to comment.