Home Gen490 @ 2025-04-05-02:33

This commit is contained in:
Jonas Röger 2025-04-05 02:33:41 +02:00
parent 7a3bb5cc82
commit 63f03aacdb
4 changed files with 33 additions and 24 deletions

View File

@ -11,6 +11,7 @@
../modules/home/hyprland
../modules/home/kdeconnect.nix
../modules/home/kitty
../modules/home/nextcloud
../modules/home/ranger
../modules/home/ssh.nix
../modules/home/swaync
@ -65,11 +66,6 @@
# release notes.
home.stateVersion = "24.11"; # Please read the comment before changing.
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = with pkgs; [
];
home.sessionVariables = {
EDITOR = "vim";
};

View File

@ -1,11 +1,15 @@
# 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 = ["ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod"];
@ -13,13 +17,13 @@
boot.kernelModules = [];
boot.extraModulePackages = [];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/a9ac5007-f148-4001-ba49-f6a0bfad85cc";
fileSystems."/" = {
device = "/dev/disk/by-uuid/a9ac5007-f148-4001-ba49-f6a0bfad85cc";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/12CE-A600";
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/12CE-A600";
fsType = "vfat";
options = ["fmask=0022" "dmask=0022"];
};

View File

@ -0,0 +1,6 @@
{...}: {
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
}

View File

@ -0,0 +1,3 @@
{...}: {
imports = [./config.nix];
}