Compare commits

...

4 commits

3 changed files with 17 additions and 2 deletions

View file

@ -31,6 +31,16 @@
device = "/dev/disk/by-label/WD_RED_4T_1"; device = "/dev/disk/by-label/WD_RED_4T_1";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/nas/public/Music" = {
device = "/nas/Syncthing/Sync/Music";
fsType = "auto";
options = [
"defaults"
"nofail"
"nobootwait"
"bind"
];
};
swapDevices = [ ]; swapDevices = [ ];

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, unstable, ... }:
let let
cfg = config.profile.go; cfg = config.profile.go;
impl = pkgs.buildGoModule rec { impl = pkgs.buildGoModule rec {
@ -20,6 +20,7 @@ in
goPrivate = [ goPrivate = [
"gitlab.bareksa.com" "gitlab.bareksa.com"
]; ];
package = unstable.go_1_23;
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
gotools gotools
@ -28,7 +29,7 @@ in
gomodifytags gomodifytags
gotests gotests
iferr iferr
gopls unstable.gopls
gofumpt gofumpt
impl impl
golangci-lint golangci-lint
@ -38,6 +39,7 @@ in
home.sessionVariables = { home.sessionVariables = {
GOROOT = "${pkgs.go}/share/go"; GOROOT = "${pkgs.go}/share/go";
GOPATH = "${config.home.homeDirectory}/go"; GOPATH = "${config.home.homeDirectory}/go";
GOEXPERIMENT = "rangefunc";
}; };
}; };
} }

View file

@ -6,6 +6,9 @@
192.168.50.205 apicurio.prod.bareksa.local 192.168.50.205 apicurio.prod.bareksa.local
192.168.3.50 kafka.dev.bareksa.local 192.168.3.50 kafka.dev.bareksa.local
192.168.3.109 redpanda.dev.bareksa.local kafka-console.dev.bareksa.local 192.168.3.109 redpanda.dev.bareksa.local kafka-console.dev.bareksa.local
192.168.50.102 kafka1.prod.bareksa.local
192.168.50.103 kafka2.prod.bareksa.local
192.168.50.104 kafka3.prod.bareksa.local
''; '';
networking.firewall = networking.firewall =
let let