chore: moving stuff around

This commit is contained in:
notohh 2023-01-30 06:09:00 -05:00
parent 0d2da836df
commit eb384ac2bc
5 changed files with 37 additions and 17 deletions

View file

@ -22,13 +22,13 @@
nixos = lib.nixosSystem {
inherit system;
modules = [
./configuration.nix
./nixos/configuration.nix
hyprland.nixosModules.default
{programs.hyprland.enable = true;}
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.notoh = import ./modules/home/home.nix;
home-manager.users.notoh = import ./home/home.nix;
}
];
};

View file

@ -0,0 +1,16 @@
{
pkgs,
config,
...
}: {
config.gtk = {
enable = true;
theme = {
name = "Catppuccin-Mocha-Standard-Pink-Dark";
package = pkgs.catppuccin-gtk.override {
accents = ["pink"];
variant = "mocha";
};
};
};
}

View file

@ -1,15 +1,23 @@
{ inputs, outputs, lib, config, pkgs, ... }: {
# You can import other home-manager modules here
imports = [
{config, pkgs, ...}:
];
{
imports = [
./gtk/default.nix
];
programs.home-manager.enable = true;
home = {
username = "notoh";
homeDirectory = "/home/notoh";
stateVersion = "23.05";
packages = [
pkgs.alsa-lib
pkgs.boost
pkgs.qt5.full
pkgs.openssl
];
};
systemd.user.startServices = "sd-switch";
home.stateVersion = "23.05";
}

View file

@ -4,7 +4,7 @@
imports =
[
./hardware-configuration.nix
./modules/hyprland/default.nix
../modules/hyprland/default.nix
];
# bootloader
@ -56,9 +56,6 @@
fstrim = {
enable = true;
};
printing = {
enable = false;
};
xserver = {
enable = true;
videoDrivers = [ "nvidia" ];
@ -189,7 +186,6 @@
wireplumber
dunst
qt6.full
qt5.full
gcc
cmake
libvirt