This commit is contained in:
Daylin Morgan 2022-11-09 05:38:25 +00:00
parent 86b231d118
commit 03de4e7844

View file

@ -8,8 +8,10 @@
imports = imports =
[ [
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix # ./hardware-configuration.nix
<nixpkgs/nixos/modules/installer/virtualbox-demo.nix>
]; ];
nix.package = pkgs.nixUnstable; nix.package = pkgs.nixUnstable;
nix.extraOptions = '' nix.extraOptions = ''
experimental-features = nix-command flakes experimental-features = nix-command flakes
@ -18,10 +20,8 @@
# programs.nix-ld.enable = true; # programs.nix-ld.enable = true;
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true; # boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; # boot.loader.efi.canTouchEfiVariables = true;
virtualisation.virtualbox.guest.enable = true;
# networking.hostName = "nixos"; # Define your hostname. # networking.hostName = "nixos"; # Define your hostname.
# Pick only one of the below networking options. # Pick only one of the below networking options.
@ -54,6 +54,7 @@
services.xserver.autorun = false; services.xserver.autorun = false;
services.xserver.displayManager.startx.enable = true; services.xserver.displayManager.startx.enable = true;
services.xserver.windowManager.qtile.enable = true; services.xserver.windowManager.qtile.enable = true;
services.xserver.desktopManager.plasma5.enable = true;
# Define a user account. Don't forget to set a password with passwd. # Define a user account. Don't forget to set a password with passwd.
users.users.daylin = { users.users.daylin = {
@ -90,6 +91,8 @@
picom-jonaburg picom-jonaburg
dunst dunst
gh
firefox firefox
(python3.withPackages (p: with p; [ pynvim ])) (python3.withPackages (p: with p; [ pynvim ]))
python310Packages.pip python310Packages.pip
@ -146,4 +149,3 @@
system.stateVersion = "22.05"; # Did you read the comment? system.stateVersion = "22.05"; # Did you read the comment?
} }