changed lockscreen to betterlockscreen.

This commit is contained in:
Gabe Venberg 2024-04-11 14:52:29 -05:00
parent 073444e68c
commit f617e06134
8 changed files with 60 additions and 43 deletions

View file

@ -27,7 +27,7 @@ inputs.nixpkgs.lib.nixosSystem {
host = {
user = "gabe";
gui.enable = true;
isVm=true;
isVm = true;
};
networking.hostName = "archlaptop-vm"; # Define your hostname.
# Set your time zone.

View file

@ -27,7 +27,7 @@ inputs.nixpkgs.lib.nixosSystem {
host = {
user = "gabe";
gui.enable = true;
isVm=true;
isVm = true;
};
networking.hostName = "workstation-vm"; # Define your hostname.
# Set your time zone.
@ -54,6 +54,7 @@ inputs.nixpkgs.lib.nixosSystem {
xkb.variant = "";
};
environment.shells = with pkgs; [nushell zsh];
# Define a user account. Don't forget to set a password with passwd.
users.users.${config.host.user} = {
isNormalUser = true;

View file

@ -1,34 +1,38 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/profiles/qemu-guest.nix")
];
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
boot.initrd.availableKernelModules = ["ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk"];
boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = [];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/1127e866-28dc-4c07-92ec-07be4908880c";
fsType = "ext4";
};
fileSystems."/" = {
device = "/dev/disk/by-uuid/1127e866-28dc-4c07-92ec-07be4908880c";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/CBA2-8A1E";
fsType = "vfat";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/CBA2-8A1E";
fsType = "vfat";
};
fileSystems."/home/gabe/nix-config-host" =
{ device = "nix-config-host";
fsType = "virtiofs";
};
fileSystems."/home/gabe/nix-config-host" = {
device = "nix-config-host";
fsType = "virtiofs";
};
swapDevices = [ ];
swapDevices = [];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's