Initial Commit

This commit is contained in:
2024-10-02 00:54:05 -05:00
commit 46ebfc5cb6
45 changed files with 4120 additions and 0 deletions

61
home/flake.nix Normal file
View File

@@ -0,0 +1,61 @@
{
description = "Nathan user settings";
inputs = {
prgms.url = "/home/nathan/.nixos/programs";
srvcs.url = "/home/nathan/.nixos/services";
packages.url = "/home/nathan/.nixos/packages";
};
outputs = { self, ... }@inputs: {
nixosModule = { config, lib, pkgs, ... }: {
imports = [
inputs.prgms.module
inputs.srvcs.module
inputs.packages.module
];
};
homeManagerModule = { config, lib, pkgs, ... }: {
imports = [
inputs.prgms.hmModule
inputs.srvcs.hmModule
inputs.packages.hmModule
];
home.stateVersion = "23.11";
home.username = "nathan";
home.homeDirectory = "/home/nathan";
home.pointerCursor = {
gtk.enable = true;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 16;
};
gtk = {
enable = true;
theme.name = "Tokyonight-Dark-B";
theme.package = pkgs.tokyonight-gtk-theme;
iconTheme.name = "Tokyonight-Dark";
};
services.mpris-proxy.enable = true;
programs.ssh.enable = true;
programs.home-manager.enable = true;
};
};
}