more stuff
This commit is contained in:
parent
42a0bf27e0
commit
fe34badada
24 changed files with 904 additions and 2343 deletions
|
|
@ -22,7 +22,8 @@
|
|||
./candlekeep/variables.nix
|
||||
# ./nvim.nix
|
||||
../modules/common.nix
|
||||
../modules/hyprland.nix
|
||||
# ../modules/hyprland.nix
|
||||
../modules/hyprland
|
||||
../modules/common-gui.nix
|
||||
../modules/linux-gui.nix
|
||||
../modules/devenv.nix
|
||||
|
|
|
|||
|
|
@ -7,7 +7,8 @@
|
|||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
}:
|
||||
{
|
||||
# You can import other home-manager modules here
|
||||
imports = [
|
||||
# If you want to use modules your own flake exports (from modules/home-manager):
|
||||
|
|
@ -17,8 +18,14 @@
|
|||
# inputs.nix-colors.homeManagerModules.default
|
||||
|
||||
# You can also split up your configuration and import pieces of it here:
|
||||
|
||||
./candlekeep/variables.nix
|
||||
../modules/hyprpanel.nix
|
||||
../modules/hyprlock.nix
|
||||
# ../modules/hypridle.nix
|
||||
# ./nvim.nix
|
||||
../modules/common.nix
|
||||
|
||||
../modules/hyprland.nix
|
||||
../modules/common-gui.nix
|
||||
../modules/linux-gui.nix
|
||||
|
|
@ -106,7 +113,7 @@
|
|||
|
||||
# Add stuff for your user as you see fit:
|
||||
# programs.neovim.enable = true;
|
||||
home.packages = with pkgs; [openvpn];
|
||||
home.packages = with pkgs; [ openvpn ];
|
||||
|
||||
# Enable home-manager and git
|
||||
programs.home-manager.enable = true;
|
||||
|
|
|
|||
26
home-manager/machines/grymforge/variables.nix
Normal file
26
home-manager/machines/grymforge/variables.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
imports = [ ../../../common/nixos/variables-config.nix ];
|
||||
|
||||
config.var = {
|
||||
hostname = "grymforge";
|
||||
username = "gwg313";
|
||||
configDirectory = "/home/" + config.var.username + "/.config/nixos";
|
||||
|
||||
keyboardLayout = "en_US";
|
||||
|
||||
location = "Ottawa";
|
||||
timeZone = "American/Toronto";
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
|
||||
git = {
|
||||
username = "gwg313";
|
||||
email = "gwg313@pm.me";
|
||||
};
|
||||
|
||||
autoUpgrade = true;
|
||||
autoGarbageCollector = true;
|
||||
|
||||
theme = import ../../../common/style/vars/grymforge.nix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue