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 {
|
nixos = lib.nixosSystem {
|
||||||
inherit system;
|
inherit system;
|
||||||
modules = [
|
modules = [
|
||||||
./configuration.nix
|
./nixos/configuration.nix
|
||||||
hyprland.nixosModules.default
|
hyprland.nixosModules.default
|
||||||
{programs.hyprland.enable = true;}
|
{programs.hyprland.enable = true;}
|
||||||
home-manager.nixosModules.home-manager {
|
home-manager.nixosModules.home-manager {
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
home-manager.useUserPackages = 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, ... }: {
|
{config, pkgs, ...}:
|
||||||
# You can import other home-manager modules here
|
|
||||||
imports = [
|
|
||||||
|
|
||||||
];
|
{
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
imports = [
|
||||||
|
./gtk/default.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
systemd.user.startServices = "sd-switch";
|
home = {
|
||||||
|
username = "notoh";
|
||||||
|
homeDirectory = "/home/notoh";
|
||||||
|
stateVersion = "23.05";
|
||||||
|
packages = [
|
||||||
|
pkgs.alsa-lib
|
||||||
|
pkgs.boost
|
||||||
|
pkgs.qt5.full
|
||||||
|
pkgs.openssl
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
home.stateVersion = "23.05";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./modules/hyprland/default.nix
|
../modules/hyprland/default.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# bootloader
|
# bootloader
|
||||||
|
@ -56,9 +56,6 @@
|
||||||
fstrim = {
|
fstrim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
printing = {
|
|
||||||
enable = false;
|
|
||||||
};
|
|
||||||
xserver = {
|
xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
videoDrivers = [ "nvidia" ];
|
videoDrivers = [ "nvidia" ];
|
||||||
|
@ -189,7 +186,6 @@
|
||||||
wireplumber
|
wireplumber
|
||||||
dunst
|
dunst
|
||||||
qt6.full
|
qt6.full
|
||||||
qt5.full
|
|
||||||
gcc
|
gcc
|
||||||
cmake
|
cmake
|
||||||
libvirt
|
libvirt
|
Loading…
Reference in a new issue