From 116856e6f27f912de157b8e225d58efb629117f6 Mon Sep 17 00:00:00 2001 From: Michael Thomson Date: Wed, 28 Feb 2024 15:50:00 -0500 Subject: [PATCH] updated nixos host --- hosts/nixos/configuration.nix | 14 +++++++------- hosts/nixos/home.nix | 12 +++++++----- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/hosts/nixos/configuration.nix b/hosts/nixos/configuration.nix index 3b3a068..28193cb 100644 --- a/hosts/nixos/configuration.nix +++ b/hosts/nixos/configuration.nix @@ -19,7 +19,7 @@ # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # Enable networking - networking.networkmanager.enable = true; + networking.networkmanager.enable = true; # Set your time zone. time.timeZone = "America/Toronto"; @@ -48,11 +48,11 @@ package = pkgs.i3-gaps; extraPackages = with pkgs; [ dmenu - i3status - i3lock - i3blocks - feh - arandr + i3status + i3lock + i3blocks + feh + arandr ]; }; @@ -96,7 +96,7 @@ useGlobalPkgs = true; useUserPackages = true; users = { - "mthomson" = import ./home.nix; + mthomson = import ./home.nix; }; }; diff --git a/hosts/nixos/home.nix b/hosts/nixos/home.nix index 7985e32..3dae53c 100644 --- a/hosts/nixos/home.nix +++ b/hosts/nixos/home.nix @@ -2,21 +2,23 @@ { imports = [ - ./i3 - ./wezterm - ./nvim + ../../modules/home-manager/i3 + ../../modules/home-manager/neovim + ../../modules/home-manager/wezterm + ../../modules/home-manager/zsh + ../../modules/home-manager/tmux + ../../modules/home-manager/taskwarrior ]; home.username = "mthomson"; home.homeDirectory = "/home/mthomson"; home.stateVersion = "23.11"; home.packages = with pkgs; [ - cowsay firefox _1password-gui gcc fzf - nodejs + ripgrep ]; programs.home-manager.enable = true;