Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update #79

Merged
merged 7 commits into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

# https://lix.systems
lix-module = {
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0-rc1.tar.gz";
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.0.tar.gz";
inputs.nixpkgs.follows = "nixpkgs";
};
};
Expand Down
1 change: 1 addition & 0 deletions home-manager/home/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ in {
p7zip
pciutils
pinentry
pwgen
rar
ripgrep
rsync
Expand Down
2 changes: 2 additions & 0 deletions hosts/home/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@
./networking.nix
./programs.nix
./services/autofs.nix
./services/avahi.nix
./services/blueman.nix
./services/davfs2.nix
./services/dbus.nix
./services/gvfs.nix
./services/openssh.nix
./services/pipewire.nix
./services/printing.nix
./services/tailscale.nix
./services/teleport.nix
./services/xserver/xkb.nix
Expand Down
2 changes: 2 additions & 0 deletions hosts/home/fonts.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
};

packages = with pkgs; [
corefonts
hack-font
inter
nerdfonts
Expand All @@ -23,6 +24,7 @@
roboto-mono
roboto-serif
roboto-slab
vistafonts
];
};
}
7 changes: 7 additions & 0 deletions hosts/home/services/avahi.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
}
3 changes: 3 additions & 0 deletions hosts/home/services/printing.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
services.printing.enable = true;
}
2 changes: 1 addition & 1 deletion hosts/home/services/tailscale.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
services.tailscale = {
enable = true;
extraUpFlags = "--accept-routes";
extraUpFlags = "--accept-routes --shields-up";
};
}