This commit is contained in:
Daylin Morgan 2022-11-21 13:09:53 -06:00
parent 25750c2420
commit 8dfbafaed2
2 changed files with 18 additions and 11 deletions

View file

@ -13,14 +13,12 @@
''; '';
boot.kernelPackages = pkgs.linuxPackages_latest; boot.kernelPackages = pkgs.linuxPackages_latest;
# todo import from a different file
networking.hostName = "nixos-vm"; # Define your hostname. networking.hostName = "nixos-vm"; # Define your hostname.
time.timeZone = "America/Chicago"; time.timeZone = "America/Chicago";
programs.zsh.enable = true; programs.zsh.enable = true;
programs.dconf.enable = true;
# overwrite demo as default login # overwrite demo as default login
services.xserver = { services.xserver = {
enable = true; enable = true;
@ -53,8 +51,8 @@
# for compatibility add zsh to list of /etc/shells # for compatibility add zsh to list of /etc/shells
environment.shells = with pkgs; [ zsh ]; environment.shells = with pkgs; [ zsh ];
environment.systemPackages = with pkgs; [
environment.systemPackages = with pkgs; [
fuse fuse
zsh zsh
@ -80,11 +78,17 @@
rofi rofi
dunst dunst
feh feh
picom picom
gtk3
gnome.adwaita-icon-theme
gnome.gnome-settings-daemon
catppuccin-gtk
(python3.withPackages (p: with p; # (python3.withPackages (p: with p;
[ pynvim ])) # [ pynvim ]))
# firefox # firefox
wavebox wavebox
@ -93,12 +97,15 @@
(vivaldi.override { (vivaldi.override {
proprietaryCodecs = true; proprietaryCodecs = true;
enableWidevine = false; enableWidevine = false;
commandLineArgs = "--force-dark-mode";
}) })
vscode.fhs
go go
rustup rustup
]; ];

View file

@ -20,7 +20,7 @@
modules = [ modules = [
./configuration.nix ./configuration.nix
inputs.nix-ld.nixosModules.nix-ld inputs.nix-ld.nixosModules.nix-ld
./overlays.nix
]; ];
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
}; };