Switching BigBoy back to NixOS

This commit is contained in:
Gene Liverman 2024-12-30 23:25:38 -05:00
parent ff733b80d7
commit 8ecb7ab408
4 changed files with 35 additions and 67 deletions

View file

@ -2,33 +2,20 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, username, ... }:
{ inputs, config, pkgs, username, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../../../system/common/linux/flatpaks.nix
];
imports = [ # Include the results of the hardware scan.
./hardware-configuration.nix
../../common/linux/flatpaks.nix
../../common/linux/ripping.nix
];
system.stateVersion = "24.11"; # Did you read the comment?
# Bootloader.
boot.loader = {
grub = {
device = "nodev";
enable = true;
useOSProber = true;
efiSupport = true;
# set $FS_UUID to the UUID of the EFI partition
extraEntries = ''
menuentry "Kubuntu" {
insmod part_gpt
insmod fat
insmod chain
search --no-floppy --fs-uuid --set=root B208-923B
chainloader /EFI/ubuntu/grubx64.efi
}
'';
};
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
@ -96,7 +83,7 @@
# services.xserver.libinput.enable = true;
# Define a user account. Don't forget to set a password with passwd.
users.users.gene = {
users.users.${username} = {
isNormalUser = true;
description = "Gene Liverman";
extraGroups = [ "networkmanager" "wheel" "dialout" "input" ];
@ -118,13 +105,14 @@
angryipscanner
displaylink
gitkraken
handbrake
kdePackages.ksshaskpass
libreoffice
meld
networkmanager-openvpn
slack
tilix
vivaldi
xorg.xf86videofbdev
xfce.xfce4-terminal
zoom-us
];
@ -165,31 +153,4 @@
};
};
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# List services that you want to enable:
# Enable the OpenSSH daemon.
# services.openssh.enable = true;
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "24.05"; # Did you read the comment?
}