chore: moving stuff around
This commit is contained in:
parent
0d2da836df
commit
eb384ac2bc
5 changed files with 37 additions and 17 deletions
|
@ -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;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
16
modules/home/gtk/default.nix
Normal file
16
modules/home/gtk/default.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,15 +1,23 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||
# You can import other home-manager modules here
|
||||
imports = [
|
||||
{config, pkgs, ...}:
|
||||
|
||||
];
|
||||
{
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
imports = [
|
||||
./gtk/default.nix
|
||||
];
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
systemd.user.startServices = "sd-switch";
|
||||
|
||||
|
||||
home.stateVersion = "23.05";
|
||||
}
|
||||
home = {
|
||||
username = "notoh";
|
||||
homeDirectory = "/home/notoh";
|
||||
stateVersion = "23.05";
|
||||
packages = [
|
||||
pkgs.alsa-lib
|
||||
pkgs.boost
|
||||
pkgs.qt5.full
|
||||
pkgs.openssl
|
||||
];
|
||||
};
|
||||
|
||||
}
|
|
@ -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
|
Loading…
Reference in a new issue