setup all of home manager
This commit is contained in:
parent
69eb3d3527
commit
673887a37b
|
@ -65,6 +65,7 @@
|
|||
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
programs.zsh.enable = true;
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
hardware.bluetooth.enable = true; # enables support for Bluetooth
|
||||
hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
|
||||
|
@ -85,6 +86,8 @@
|
|||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.shells = with pkgs; [ zsh ];
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
wget
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
lib = nixpkgs.lib;
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
pkgs.config.allowUnfree = true;
|
||||
in {
|
||||
nixosConfigurations = {
|
||||
hp-laptop-lho = lib.nixosSystem {
|
||||
|
|
Loading…
Reference in New Issue