Update signal regularly
This commit is contained in:
parent
0e963b550f
commit
26239e04b3
2 changed files with 6 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, unstablePkgs, ... }:
|
||||
{ config, pkgs, updatePkgs, unstablePkgs, ... }:
|
||||
let
|
||||
keys = import ./ssh-keys.nix;
|
||||
in
|
||||
|
|
@ -187,7 +187,7 @@ in
|
|||
vim
|
||||
emacs
|
||||
tmux
|
||||
unstablePkgs.signal-desktop
|
||||
updatePkgs.signal-desktop
|
||||
gcc
|
||||
tree
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
|
||||
update.url = "github:nixos/nixpkgs/nixos-24.05";
|
||||
unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager/release-24.05";
|
||||
|
|
@ -10,16 +11,17 @@
|
|||
};
|
||||
};
|
||||
|
||||
outputs = inputs@{ nixpkgs, home-manager, unstable, ... }:
|
||||
outputs = inputs@{ nixpkgs, home-manager, unstable, update, ... }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
unstablePkgs = unstable.legacyPackages.${system};
|
||||
updatePkgs = update.legacyPackages.${system};
|
||||
in {
|
||||
nixosConfigurations = {
|
||||
sandy = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit unstablePkgs ; };
|
||||
specialArgs = { inherit unstablePkgs updatePkgs; };
|
||||
modules = [
|
||||
./configuration.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
|
|
|
|||
Loading…
Reference in a new issue