feat: switch to unstable channel
This commit is contained in:
parent
a002b74366
commit
8f1e1ea06e
5 changed files with 34 additions and 15 deletions
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ pkgs, unstable, ... }:
|
||||
let
|
||||
aliases = import ../../modules/aliases.nix;
|
||||
in
|
||||
|
|
@ -18,6 +18,9 @@ in
|
|||
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.extraSpecialArgs = {
|
||||
inherit unstable;
|
||||
};
|
||||
|
||||
home-manager.users.gandalf = { pkgs, ... }: {
|
||||
imports = [ ./modules ];
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
./git.nix
|
||||
./gnupg.nix
|
||||
./neovim.nix
|
||||
./ssh.nix
|
||||
./sway.nix
|
||||
./tmux.nix
|
||||
./udiskie.nix
|
||||
|
|
|
|||
9
users/gandalf/modules/ssh.nix
Normal file
9
users/gandalf/modules/ssh.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ ... }: {
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
services.ssh-agent = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue