Compare commits

...

4 commits

4 changed files with 23 additions and 16 deletions

View file

@ -62,7 +62,7 @@ in
monaspace monaspace
(pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) (pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
noto-fonts noto-fonts
noto-fonts-cjk noto-fonts-cjk-sans
noto-fonts-color-emoji noto-fonts-color-emoji
roboto roboto
ubuntu_font_family ubuntu_font_family

View file

@ -29,11 +29,11 @@
"zig": "zig" "zig": "zig"
}, },
"locked": { "locked": {
"lastModified": 1729515458, "lastModified": 1729600492,
"narHash": "sha256-AYLxdLukuWXJREYupBiAXRk9PGX1qA7w/5adKMlNpTo=", "narHash": "sha256-lQ1oSHfNRvveB9YEMetEFl6a8Tpb6cQkMtSQKAYBLMQ=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "c2cbc214d5f6d45cfa171b8ed6ea7a670a5cbdab", "rev": "5e001fcb64deeee69b92a03a51d05a21b09153bd",
"revCount": 7762, "revCount": 7763,
"type": "git", "type": "git",
"url": "ssh://git@github.com/ghostty-org/ghostty" "url": "ssh://git@github.com/ghostty-org/ghostty"
}, },
@ -79,11 +79,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1729256560, "lastModified": 1729413321,
"narHash": "sha256-/uilDXvCIEs3C9l73JTACm4quuHUsIHcns1c+cHUJwA=", "narHash": "sha256-I4tuhRpZFa6Fu6dcH9Dlo5LlH17peT79vx1y1SpeKt0=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0", "rev": "1997e4aa514312c1af7e2bda7fad1644e778ff26",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -95,11 +95,11 @@
}, },
"nixpkgs-stable": { "nixpkgs-stable": {
"locked": { "locked": {
"lastModified": 1729307008, "lastModified": 1729449015,
"narHash": "sha256-QUvb6epgKi9pCu9CttRQW4y5NqJ+snKr1FZpG/x3Wtc=", "narHash": "sha256-Gf04dXB0n4q0A9G5nTGH3zuMGr6jtJppqdeljxua1fo=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a9b86fc2290b69375c5542b622088eb6eca2a7c3", "rev": "89172919243df199fe237ba0f776c3e3e3d72367",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -11,7 +11,7 @@
}; };
}; };
home.packages = with pkgs; [ calibre ]; home.packages = with pkgs; [ ];
programs.gpg.enable = true; programs.gpg.enable = true;
services.gpg-agent = { services.gpg-agent = {

View file

@ -117,22 +117,29 @@
systemd.services."getty@tty1".enable = false; systemd.services."getty@tty1".enable = false;
systemd.services."autovt@tty1".enable = false; systemd.services."autovt@tty1".enable = false;
nix.settings.trusted-users = [ "dln" ];
nix.buildMachines = [ nix.buildMachines = [
{ {
hostName = "nemo.aarn.patagia.dev"; hostName = "nemo.aarn.patagia.dev";
sshUser = "nixremote"; sshUser = "nixremote";
sshKey = "/root/.ssh/id_ed25519";
system = "x86_64-linux"; system = "x86_64-linux";
protocol = "ssh-ng"; protocol = "ssh-ng";
maxJobs = 32; maxJobs = 32;
speedFactor = 2; speedFactor = 2;
supportedFeatures = [ ]; supportedFeatures = [
"nixos-test"
"big-parallel"
"kvm"
];
mandatoryFeatures = [ ]; mandatoryFeatures = [ ];
} }
]; ];
nix.distributedBuilds = true; nix.distributedBuilds = true;
nix.extraOptions = '' nix.settings.builders-use-substitutes = true;
builders-use-substitutes = true nix.settings.trusted-substituters = [
''; "ssh-ng://nemo.aarn.patagia.dev"
];
system.stateVersion = "24.05"; # Did you read the comment? system.stateVersion = "24.05"; # Did you read the comment?
} }