Compare commits
No commits in common. "baaf51693925984288cbdfa338317950a9910811" and "195a66d7bfff484417e469ad4043389f5c015f6d" have entirely different histories.
baaf516939
...
195a66d7bf
6 changed files with 14 additions and 19 deletions
|
@ -51,18 +51,6 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
services.avahi = {
|
|
||||||
nssmdns4 = true;
|
|
||||||
enable = true;
|
|
||||||
ipv4 = true;
|
|
||||||
ipv6 = true;
|
|
||||||
publish = {
|
|
||||||
enable = true;
|
|
||||||
addresses = true;
|
|
||||||
workstation = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# Open ports in the firewall.
|
# Open ports in the firewall.
|
||||||
# networking.firewall.allowedTCPPorts = [ ... ];
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
||||||
# networking.firewall.allowedUDPPorts = [ ... ];
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
# Workaround for https://github.com/NixOS/nix/issues/9574
|
# Workaround for https://github.com/NixOS/nix/issues/9574
|
||||||
nix-path = config.nix.nixPath;
|
nix-path = config.nix.nixPath;
|
||||||
substituters = [
|
substituters = [
|
||||||
"https://cache-nixos-org.aarn.patagia.net/"
|
"https://cache.nixos.org/"
|
||||||
];
|
];
|
||||||
trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ];
|
trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ];
|
||||||
extra-substituters = [
|
extra-substituters = [
|
||||||
|
|
13
flake.nix
13
flake.nix
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
nixConfig = {
|
nixConfig = {
|
||||||
substituters = [
|
substituters = [
|
||||||
"https://cache-nixos-org.aarn.patagia.net/"
|
"https://cache.nixos.org/"
|
||||||
];
|
];
|
||||||
extra-substituters = [
|
extra-substituters = [
|
||||||
"https://nix-community.cachix.org"
|
"https://nix-community.cachix.org"
|
||||||
|
@ -14,14 +14,21 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
ghostty.url = "github:ghostty-org/ghostty";
|
|
||||||
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
|
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.11";
|
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.05";
|
||||||
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
||||||
|
|
||||||
home-manager.url = "github:nix-community/home-manager";
|
home-manager.url = "github:nix-community/home-manager";
|
||||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
|
ghostty = {
|
||||||
|
url = "git+ssh://git@github.com/ghostty-org/ghostty";
|
||||||
|
inputs = {
|
||||||
|
nixpkgs-stable.follows = "nixpkgs";
|
||||||
|
nixpkgs-unstable.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
};
|
||||||
ghostty-hm.url = "github:clo4/ghostty-hm-module";
|
ghostty-hm.url = "github:clo4/ghostty-hm-module";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
search_mode_shell_up_key_binding = "prefix";
|
search_mode_shell_up_key_binding = "prefix";
|
||||||
show_help = false;
|
show_help = false;
|
||||||
style = "compact";
|
style = "compact";
|
||||||
sync_address = "https://atuin.patagia.net";
|
sync_address = "https://atuin.patagia.dev";
|
||||||
sync.records = true;
|
sync.records = true;
|
||||||
|
|
||||||
daemon = {
|
daemon = {
|
||||||
|
|
|
@ -29,6 +29,6 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
GOPROXY = "https://athena.patagia.net";
|
GOPROXY = "https://athena.patagia.dev";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -219,5 +219,5 @@
|
||||||
"nixremote"
|
"nixremote"
|
||||||
];
|
];
|
||||||
|
|
||||||
system.stateVersion = "24.11"; # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
system.stateVersion = "24.05"; # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue