Compare commits

..

No commits in common. "e7eeafa3991ecd1083482c21eba704441102b69d" and "8c79c232518c10df8facc0de65f0121b96eb89ad" have entirely different histories.

3 changed files with 16 additions and 28 deletions

View file

@ -632,11 +632,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1728685293, "lastModified": 1728588172,
"narHash": "sha256-1WowL96pksT/XCi+ZXHgqiQ9NiU5oxWuNIQYWqOoEYc=", "narHash": "sha256-wCLcOMOyiFHa4MfAT1SR8jj47GcmCXiR93kgFs38bVY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "2b13611eaed8326789f76f70d21d06fbb14e3e47", "rev": "8bb5d53c5847d9a9b2ad1bda49f9aa9df0de282a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -648,11 +648,11 @@
"homebrew-cask": { "homebrew-cask": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1728684443, "lastModified": 1728589476,
"narHash": "sha256-lHQahPedE1xs3JR1qcsa4Zn1RxhjzQQv4Wi8vxEoHiM=", "narHash": "sha256-YNv/P3sGzyKyag4Ght9a22SYAQFLuZKL0+K1CYHPQlI=",
"owner": "homebrew", "owner": "homebrew",
"repo": "homebrew-cask", "repo": "homebrew-cask",
"rev": "f49433cc1890ae32b79151cf632310e68884db30", "rev": "2535cdb3a57bff70300dfa932217bd08db6ac9ec",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -664,11 +664,11 @@
"homebrew-core": { "homebrew-core": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1728685265, "lastModified": 1728593820,
"narHash": "sha256-gRk/PUBOtyeGyhAYKd5d8PVD9EZ5MFFgCKsaejD62eE=", "narHash": "sha256-0xPioDljZRjYkJsQ77SVvmqyKsFCLon9Ykv0hSysWrc=",
"owner": "homebrew", "owner": "homebrew",
"repo": "homebrew-core", "repo": "homebrew-core",
"rev": "bd26ffb09205084a18b13274b7a92fa48416511a", "rev": "d6f56dfca3dbb0b6b332501bbda4c036876d4c63",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -1390,11 +1390,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1728620224, "lastModified": 1728533825,
"narHash": "sha256-YfiNICuQO/+HheUQ9P9ijFOzQpiC7YmotA0W28fbRbE=", "narHash": "sha256-3+Sz3NWHQZWLsIr4B/Q2CSmZmpQyk/tE7rTB6urzjZI=",
"owner": "Gerg-L", "owner": "Gerg-L",
"repo": "spicetify-nix", "repo": "spicetify-nix",
"rev": "b4702ed0b3d634367e28c4d042bd1fd3fb29b692", "rev": "d6e8bdf856dfba9f704fd58df4c865be8d819b30",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -1510,11 +1510,11 @@
"plugins-typst-preview": "plugins-typst-preview" "plugins-typst-preview": "plugins-typst-preview"
}, },
"locked": { "locked": {
"lastModified": 1728706087, "lastModified": 1728677634,
"narHash": "sha256-i3C4H+v5mcFfTF9nKEsgkVoDVO7wN/bdSKGjfHU+/UA=", "narHash": "sha256-0j7o7ayC4TDEnW8T5MyKNFDGrBL32uoZlrBsgAbh3Eg=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "f4f7326044ae5afa36a85cbfe801ba6cfc2207b7", "rev": "7346c8991bf035d0ab9fc7d054bf24b2b241f576",
"revCount": 22, "revCount": 21,
"type": "git", "type": "git",
"url": "https://code.youwen.dev/youwen5/viminal2" "url": "https://code.youwen.dev/youwen5/viminal2"
}, },

View file

@ -1,7 +1,6 @@
{ {
inputs, inputs,
system, system,
osConfig,
... ...
}: }:
{ {
@ -29,7 +28,6 @@
home-manager.backupFileExtension = "backup"; home-manager.backupFileExtension = "backup";
home-manager.extraSpecialArgs = { home-manager.extraSpecialArgs = {
inherit inputs; inherit inputs;
inherit osConfig;
}; };
home-manager.users.youwen = { home-manager.users.youwen = {
imports = [ imports = [

View file

@ -1,7 +1,6 @@
{ {
inputs, inputs,
pkgs, pkgs,
osConfig,
... ...
}: }:
{ {
@ -72,13 +71,4 @@
# Let home Manager install and manage itself. # Let home Manager install and manage itself.
programs.home-manager.enable = true; programs.home-manager.enable = true;
programs.fish.functions = {
rebuild = ''doas nixos-rebuild --flake ~/.config/liminalOS\#${osConfig.networking.hostName} switch &| nom'';
nixos-update = ''
cd ~/.config/liminalOS
nix flake update --commit-lock-file
doas nixos-rebuild --flake ~/.config/liminalOS\#${osConfig.networking.hostName} switch &| nom
'';
};
} }