From bbcfdfc120e502d6235df867c1d1569a1446fa2b Mon Sep 17 00:00:00 2001 From: eneller Date: Sun, 10 Dec 2023 09:21:15 +0100 Subject: [PATCH] install some more stuff --- configuration.nix | 8 ++++++-- hardware-configuration.nix | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/configuration.nix b/configuration.nix index 4d32c43..aa1e980 100644 --- a/configuration.nix +++ b/configuration.nix @@ -8,7 +8,8 @@ imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix - + (import "${builtins.fetchTarball https://github.com/nix-community/home-manager/archive/master.tar.gz}/nixos") + #./home.nix ]; # Bootloader. @@ -151,12 +152,14 @@ ffmpeg logseq imagemagick_light - nextcloud-client # TODO enable autostart, keep login data + nextcloud-client # TODO replace with rclone jetbrains.idea-ultimate vscodium # consider vscodium-fhs texlive.combined.scheme-medium + python3 ansible telegram-desktop + home-manager ]; programs.neovim = { @@ -177,6 +180,7 @@ }; + # fonts = { # fonts = with pkgs; [ # (nerdfonts.override { fonts = [ "FiraCode" "FiraMono" ]; }) diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 43e598a..9272368 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -9,7 +9,7 @@ ]; boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "sr_mod" ]; - boot.initrd.kernelModules = [ ]; + boot.initrd.kernelModules = [ "amdgpu" ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ];