Compare commits
No commits in common. "b16eda736ceb979d9afe38d942624602a727b125" and "eddd3023f36083c93bf4a1947809d5681c090ca5" have entirely different histories.
b16eda736c
...
eddd3023f3
|
@ -18,6 +18,22 @@ function nix_find() {
|
|||
fi
|
||||
}
|
||||
|
||||
# Switch to Unstable branch.
|
||||
function nix_unstable() {
|
||||
nix-channel --remove nixos
|
||||
# nix-channel --remove home-manager
|
||||
|
||||
nix-channel --add https://nixos.org/channels/nixos-unstable nixos
|
||||
# nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager
|
||||
|
||||
nix-channel --update
|
||||
}
|
||||
|
||||
# Display current channel.
|
||||
function nix_channel() {
|
||||
nix-channel --list
|
||||
}
|
||||
|
||||
# Rebuild system.
|
||||
# Optionally force the hostname.
|
||||
# Usage: nix_rebuild [HOSTNAME]
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
./module/common/Locale.nix
|
||||
./module/common/Network.nix
|
||||
./module/common/Nix.nix
|
||||
./module/common/Package.nix
|
||||
./module/common/Packages.nix
|
||||
./module/common/Root.nix
|
||||
./module/common/Swap.nix
|
||||
./module/common/Users.nix
|
||||
|
|
|
@ -34,7 +34,6 @@
|
|||
virt-manager
|
||||
wget
|
||||
wl-clipboard
|
||||
yt-dlp
|
||||
zip unzip
|
||||
];
|
||||
}
|
Reference in a new issue