This commit is contained in:
KaitoTLex 2025-01-09 10:53:15 -08:00
parent b93a069caf
commit ba79dc2907
3 changed files with 22 additions and 33 deletions

44
flake.lock generated
View file

@ -228,11 +228,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1736277415, "lastModified": 1736421950,
"narHash": "sha256-kPDXF6cIPsVqSK08XF5EC6KM7BdMnM9vtJDzsnf+lLU=", "narHash": "sha256-RyrX0WFXxFrYvzHNLTIyuk3NcNl3UBykuYru/P0zW5E=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "5c4302313d9207f7ec0886d68f8ff4a3c71209a1", "rev": "d4aebb947a301b8da8654a804979a738c5c5da50",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -279,11 +279,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1736012469, "lastModified": 1736344531,
"narHash": "sha256-/qlNWm/IEVVH7GfgAIyP6EsVZI6zjAx1cV5zNyrs+rI=", "narHash": "sha256-8YVQ9ZbSfuUk2bUf2KRj60NRraLPKPS0Q4QFTbc+c2c=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8f3e1f807051e32d8c95cd12b9b421623850a34d", "rev": "bffc22eb12172e6db3c5dde9e3e5628f8e3e7912",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -293,35 +293,21 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_2": {
"locked": {
"lastModified": 1735268880,
"narHash": "sha256-7QEFnKkzD13SPxs+UFR5bUFN2fRw+GlL0am72ZjNre4=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "7cc0bff31a3a705d3ac4fdceb030a17239412210",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixvim": { "nixvim": {
"inputs": { "inputs": {
"nixCats": "nixCats", "nixCats": "nixCats",
"nixpkgs": "nixpkgs_2", "nixpkgs": [
"nixpkgs"
],
"plugins-blink-ripgrep": "plugins-blink-ripgrep", "plugins-blink-ripgrep": "plugins-blink-ripgrep",
"plugins-pomo-nvim": "plugins-pomo-nvim" "plugins-pomo-nvim": "plugins-pomo-nvim"
}, },
"locked": { "locked": {
"lastModified": 1735598635, "lastModified": 1736435931,
"narHash": "sha256-GRv8HHtzo3z9HiAxTVGJO6hoz6J7QvzuNamDLCanml0=", "narHash": "sha256-yznuMqXFsa9jQJ+wNNwPuzE2kLaS8RprZQmSZq2kMd8=",
"owner": "kaitotlex", "owner": "kaitotlex",
"repo": "vix1", "repo": "vix1",
"rev": "03981ad2cbc54351a8d9645101bb83be4231bc2d", "rev": "7639c83d4f30ae80cf60c6553ca37f58588d22a5",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -380,11 +366,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1736309767, "lastModified": 1736396171,
"narHash": "sha256-2bKhhFDPSaWyyL19epC1PpfbkQuYtW/2G9HMbjBifws=", "narHash": "sha256-1Pr1csD6wVTI2M+Dld77cc+PY83eKoO7ItIrvySWcmU=",
"owner": "Gerg-L", "owner": "Gerg-L",
"repo": "spicetify-nix", "repo": "spicetify-nix",
"rev": "c5239abf647fa48ff25b54552a58fb969f0c11cb", "rev": "511074b9bed99e5cd4ef84999518970fd21af243",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -11,7 +11,10 @@
url = "github:Gerg-L/spicetify-nix"; url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nixvim.url = "github:kaitotlex/vix1"; nixvim = {
url = "github:kaitotlex/vix1";
inputs.nixpkgs.follows = "nixpkgs";
};
stylix = { stylix = {
url = "github:danth/stylix"; url = "github:danth/stylix";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";

View file

@ -114,10 +114,10 @@
}; };
# Set your time zone. # Set your time zone.
#time.timeZone = "Americas/"; # Asia/Taipei lib.mkDefault time.timeZone = "America/Los_Angeles"; # Asia/Taipei lib.mkDefault
#services.automatic-timezoned.enable = true; #services.automatic-timezoned.enable = true;
time.timeZone = lib.mkForce null; #time.timeZone = lib.mkForce null;
services.timesyncd.enable = true; #services.timesyncd.enable = true;
systemd.services = { systemd.services = {
# Ensure network uplink on boot # Ensure network uplink on boot
NetworkManager-wait-online.enable = true; NetworkManager-wait-online.enable = true;