Skip to content

Commit

Permalink
fix: add zsh as user shell
Browse files Browse the repository at this point in the history
  • Loading branch information
JayRovacsek committed Oct 8, 2024
1 parent b3a0f0b commit dd6f4fd
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@
- *(static)* Update build configs - ([3ab0dda](https://github.com/JayRovacsek/nix-config/commit/3ab0ddaa8eb135235b02bf9988379926476bead2))

- *(tooling)* Add scopes to conform configuration - ([99a07f5](https://github.com/JayRovacsek/nix-config/commit/99a07f59513cfd6824a8d21875d4c8f95356f88d))
- Remove system level zsh - ([b3a0f0b](https://github.com/JayRovacsek/nix-config/commit/b3a0f0b68b422d266f45ea76bd98f355d0d21b68))

- Resolve eval issues - ([54773ee](https://github.com/JayRovacsek/nix-config/commit/54773eeeed0ba9e5bd530a78916e3c327479bb7d))

- Migrate wireless configs over to new options - ([a1e24e5](https://github.com/JayRovacsek/nix-config/commit/a1e24e5bb1c7f3c625475ced21b6b0c80d356247))
Expand Down
2 changes: 2 additions & 0 deletions hosts/alakazam/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
config,
lib,
pkgs,
self,
...
Expand All @@ -26,6 +27,7 @@ let
user-configs = merge [
builder
jay
{ users.users.jay.shell = lib.getExe pkgs.zsh; }
];

in
Expand Down
7 changes: 7 additions & 0 deletions hosts/jigglypuff/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,13 @@ in

programs.fuse.userAllowOther = true;

services.timesyncd.servers = lib.mkForce [
"137.92.140.80" # -> ntp.ise.canberra.edu.au
"138.194.21.154" # -> ntp.mel.nml.csiro.au
"129.6.15.28" # -> time-a-g.nist.gov
"129.6.15.29" # -> time-b-g.nist.gov
];

systemd.network = {
netdevs."00-vlan-dns" = {
enable = true;
Expand Down
17 changes: 7 additions & 10 deletions hosts/wigglytuff/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ in
hyprland
i18n
impermanence
journald
lorri
nix
nix-topology
Expand Down Expand Up @@ -111,16 +112,12 @@ in

powerManagement.cpuFreqGovernor = "ondemand";

services = {
journald.storage = "volatile";
timesyncd.servers = lib.mkForce [
# "129.6.15.28"
"137.92.140.80" # -> ntp.ise.canberra.edu.au
"138.194.21.154" # -> ntp.mel.nml.csiro.au
"129.6.15.28" # -> time-a-g.nist.gov
"129.6.15.29" # -> time-b-g.nist.gov
];
};
services.timesyncd.servers = lib.mkForce [
"137.92.140.80" # -> ntp.ise.canberra.edu.au
"138.194.21.154" # -> ntp.mel.nml.csiro.au
"129.6.15.28" # -> time-a-g.nist.gov
"129.6.15.29" # -> time-b-g.nist.gov
];

system.stateVersion = "24.05";
}

0 comments on commit dd6f4fd

Please sign in to comment.