added kitty shell, module organization changes.

This commit is contained in:
Gabe Venberg 2024-03-24 22:09:58 -05:00
parent 7ff04254fb
commit a26d6a1e02
11 changed files with 72 additions and 39 deletions

View file

@ -90,6 +90,7 @@
users.users.gabe = {
isNormalUser = true;
description = "Gabe Venberg";
shell = pkgs.nushell;
extraGroups = ["networkmanager" "wheel"];
packages = with pkgs; [
firefox

View file

@ -1,30 +1,31 @@
# 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, ... }:
{
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
imports =
[ (modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = ["ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk"];
boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-amd"];
boot.extraModulePackages = [];
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/87ee53a2-077d-47df-9051-9abcc0fc1a89";
fsType = "ext4";
};
fileSystems."/" =
{ device = "/dev/disk/by-uuid/1000b969-f089-4b1e-bbef-3d0c39da8a91";
fsType = "ext4";
};
swapDevices = [
{device = "/dev/disk/by-uuid/5aa8725e-fdd1-4825-9d2c-e2c2c165b726";}
];
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/AB75-97AD";
fsType = "vfat";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/506f2ef4-c9ee-4fe6-8590-95e0821d5903"; }
];
# 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

View file

@ -15,7 +15,9 @@
home.username = "gabe";
home.homeDirectory = "/home/gabe";
imports = [
../../terminal/terminal.nix
../../modules/home-manager/terminal/terminal.nix
../../modules/home-manager/home-manager.nix
../../modules/home-manager/kittty/kitty.nix
inputs.nixvim.homeManagerModules.nixvim
];
}

View file

@ -16,5 +16,6 @@
home.homeDirectory = "/home/gabe";
imports = [
../terminal/terminal.nix
../../modules/home-manager/home-manager.nix
];
}

View file

@ -16,5 +16,6 @@
home.homeDirectory = "/home/gabe";
imports = [
../terminal/terminal.nix
../../modules/home-manager/home-manager.nix
];
}