updated nixos host

This commit is contained in:
Michael Thomson 2024-02-28 15:50:00 -05:00
parent a1067ac63e
commit 116856e6f2
No known key found for this signature in database
2 changed files with 14 additions and 12 deletions

View File

@ -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;
};
};

View File

@ -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;