48 Commits

Author SHA1 Message Date
John Lancaster
f4e8b4083f nixgl flake input attempt 2025-07-06 15:42:02 -05:00
John Lancaster
3091004882 made desktopEntries optional 2025-07-06 12:40:28 -05:00
John Lancaster
0d07e078aa disabled some gnome stuff 2025-07-06 12:32:32 -05:00
John Lancaster
d5a3520471 more ghostty stuff 2025-07-06 12:27:51 -05:00
John Lancaster
f586aba5b0 attempting ghostty wrapper 2025-07-06 12:18:59 -05:00
John Lancaster
2120d3ba00 typo 2025-07-06 11:40:00 -05:00
John Lancaster
f2f1721e4c changed import style 2025-07-06 11:39:27 -05:00
John Lancaster
e000d5c7e8 shortened 2025-07-04 10:57:30 -05:00
John Lancaster
82dfb95bde moved logic for default home manager 2025-07-04 10:55:46 -05:00
John Lancaster
c94094a83d created default for nixos modules 2025-07-04 10:52:49 -05:00
John Lancaster
7fef2c9db2 moved steam to nixosModules 2025-07-04 10:50:27 -05:00
John Lancaster
dba3d0b44f moved options 2025-07-04 10:47:50 -05:00
John Lancaster
e6a29ee61f typo 2025-07-04 10:46:41 -05:00
John Lancaster
5c1530ae46 fixed inputs 2025-07-04 10:46:08 -05:00
John Lancaster
7f5aea6a86 moved home.nix into default.nix 2025-07-04 10:44:40 -05:00
John Lancaster
39a8b1455b added steam module 2025-07-04 10:26:43 -05:00
John Lancaster
0260f44582 added sops 2025-07-04 01:40:55 -05:00
John Lancaster
e471c311c2 permittedInsecurePackages 2025-07-04 01:28:54 -05:00
John Lancaster
2b686288de more allowUnfreePredicate 2025-07-04 01:27:01 -05:00
John Lancaster
26c3bef98f more allowUnfreePredicate 2025-07-04 01:26:28 -05:00
John Lancaster
4f8af521a7 more allowUnfreePredicate 2025-07-04 01:25:52 -05:00
John Lancaster
34affcba67 more allowUnfreePredicate 2025-07-04 01:23:29 -05:00
John Lancaster
f53d460071 more allowUnfreePredicate 2025-07-04 01:22:56 -05:00
John Lancaster
5b5548393b more allowUnfreePredicate 2025-07-04 01:22:30 -05:00
John Lancaster
1701f5136e more allowUnfreePredicate 2025-07-04 01:22:03 -05:00
John Lancaster
ed0e3658f9 added unfree 2025-07-04 01:21:13 -05:00
John Lancaster
773190f6c8 added vscode module 2025-07-04 01:11:18 -05:00
John Lancaster
4f98e6a0e8 logical and fix 2025-07-04 00:59:00 -05:00
John Lancaster
36e3d42ab7 added ghostty module 2025-07-04 00:57:44 -05:00
John Lancaster
874993c18c revert 2025-07-04 00:04:30 -05:00
John Lancaster
7c249ce8d7 pruning 2025-07-04 00:01:09 -05:00
John Lancaster
95c3b2081d another attempt 2025-07-03 23:58:08 -05:00
John Lancaster
849b7bf3f7 consolidated options? 2025-07-03 23:54:55 -05:00
John Lancaster
ecfe33d30f passing thru docker option 2025-07-03 23:39:27 -05:00
John Lancaster
87a27c824c typo 2025-07-03 23:36:58 -05:00
John Lancaster
1786f61e9a fixed option? 2025-07-03 23:36:16 -05:00
John Lancaster
6dbbced319 removed optionality for testing 2025-07-03 23:34:19 -05:00
John Lancaster
62ac0320bf added test script 2025-07-03 23:32:01 -05:00
John Lancaster
c8b8e04962 formatting 2025-07-03 23:31:54 -05:00
John Lancaster
53005c1ba2 fixes 2025-07-03 23:27:31 -05:00
John Lancaster
36a77a1d54 added more docker packages 2025-07-03 23:26:00 -05:00
John Lancaster
37ffa652f0 name fix 2025-07-03 23:19:44 -05:00
John Lancaster
804b1e5723 added docker option 2025-07-03 23:17:56 -05:00
John Lancaster
7b315f9a39 fix 2025-07-03 22:09:24 -05:00
John Lancaster
9f873a95c0 moved over other user options for nixosModule 2025-07-03 22:08:06 -05:00
John Lancaster
db54cd95d9 name fix 2025-07-03 21:54:34 -05:00
John Lancaster
f634eea3a7 rename 2025-07-03 21:50:32 -05:00
John Lancaster
ae071e4794 renamed to mkhomeManagerModules 2025-07-03 21:37:07 -05:00
10 changed files with 266 additions and 42 deletions

View File

@@ -8,6 +8,10 @@
inputs.nixpkgs.follows = "nixpkgs";
};
_1password-shell-plugins.url = "github:1Password/shell-plugins";
nixgl = {
url = "github:nix-community/nixGL";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, ... }@inputs:
@@ -16,52 +20,47 @@
pkgs = nixpkgs.legacyPackages.${system};
lib = pkgs.lib;
# These will get applied to both the configured user and the root user (if enabled)
userOptions = config: {
openssh.authorizedKeys.keyFiles = lib.optionals config.ssh [ ./personal_keys ];
extraGroups = lib.optionals config.root [ "wheel" ];
shell = lib.mkIf config.shell pkgs.zsh;
shell = lib.mkIf config.enableShell pkgs.zsh;
};
homeManagerModules = config: [
self.homeManagerModules.default {
mkhomeManagerModules = config: [
self.homeManagerModules.default
# { inherit (config) extraImports; }
{
user = config.user;
stateVersion = config.stateVersion;
profile = config.profile;
shell = config.shell;
enableShell = config.enableShell;
ssh = config.ssh;
_1password = config._1password;
docker = config.docker;
graphical = config.graphical;
steam = config.steam;
}
] ++ config.extraImports;
in
{
homeManagerModules.default = { ... }: {
imports = [
./nixosModules/options.nix
./home.nix
inputs._1password-shell-plugins.hmModules.default
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"1password-cli"
];
home.packages = with pkgs; [
(writeShellScriptBin "nhmu" ''
nix flake update --flake ~/.config/home-manager
nix run home-manager -- switch --flake ~/.config/home-manager
'')
];
};
lib = { inherit mkhomeManagerModules; };
homeManagerModules.default = { ... }: { imports = [ ./homeManagerModules ]; };
nixosModules.default = { config, ... }: {
imports = [
./nixosModules/options.nix
./nixosModules/scripts.nix
./nixosModules
inputs.home-manager.nixosModules.default
];
nix.settings.trusted-users = [ "root" "@wheel" ];
users.users.${config.user} = {
isNormalUser = true;
description = "John Lancaster";
extraGroups = []
++ lib.optionals config.root [ "wheel" ]
++ lib.optionals config.docker [ "docker" ]
++ lib.optionals config.networking.networkmanager.enable [ "networkmanager" ];
} // userOptions config;
users.users.root = lib.mkIf config.root (userOptions config);
@@ -72,19 +71,24 @@
extraConfig = "Defaults timestamp_timeout=1440";
};
programs.zsh.enable = lib.mkIf config.shell true;
programs.zsh.enable = lib.mkIf config.enableShell true;
virtualisation.docker = lib.mkIf config.docker {
enable = true;
enableOnBoot = true;
package = pkgs.docker;
};
home-manager = {
useUserPackages = true;
extraSpecialArgs = { inherit inputs; };
extraSpecialArgs = { inherit inputs; nixgl = inputs.nixgl; };
users = {
${config.user} = {
imports = homeManagerModules config;
imports = mkhomeManagerModules config;
};
} // lib.optionalAttrs config.root {
root = {
# home.stateVersion = config.stateVersion;
imports = homeManagerModules (config // { user = "root"; });
imports = mkhomeManagerModules (config // { user = "root"; });
};
};
};

View File

@@ -1,12 +1,38 @@
{ config, pkgs, lib, inputs, ... }:
{ inputs, config, pkgs, lib, ... }:
{
# These modules are each responsible for responding appropriately to the options
imports = [
./homeManagerModules/git.nix
./homeManagerModules/shell.nix
./homeManagerModules/ssh.nix
# inputs._1password-shell-plugins.hmModules.default
./docker.nix
./ghostty.nix
./git.nix
./shell.nix
./ssh.nix
./vscode.nix
../nixosModules/options.nix
inputs._1password-shell-plugins.hmModules.default
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"1password-cli"
"discord"
"spotify"
"steam"
"steam-original"
"steam-unwrapped"
"steam-run"
"sublimetext4"
"vscode"
"vscode-extension-mhutchie-git-graph"
"vscode-extension-ms-vscode-remote-vscode-remote-extensionpack"
"vscode-extension-MS-python-vscode-pylance"
"vscode-extension-github-copilot"
];
nixpkgs.config.permittedInsecurePackages = [
"openssl-1.1.1w"
];
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = config.user;
@@ -26,11 +52,24 @@
lazygit
btop
yazi
sops
(writeShellScriptBin "nhmu" ''
nix flake update --flake ~/.config/home-manager
nix run home-manager -- switch --flake ~/.config/home-manager --impure
'')
# # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
# # fonts?
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
] ++ lib.optionals config.graphical [
discord
spotify
sublime4
joplin-desktop
] ++ lib.optionals config._1password [
_1password-cli
gh # GitHub CLI with 1Password integration
];
# Home Manager can also manage your environment variables through
@@ -72,4 +111,4 @@
vault = "Private"
'';
};
}
}

View File

@@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
home.packages = lib.mkIf config.docker (with pkgs; [
docker
docker-compose
lazydocker
(pkgs.writeShellScriptBin "test-docker" ''
echo "Hello from docker.nix!"
'')
]);
}

View File

@@ -0,0 +1,115 @@
{ config, pkgs, lib, nixgl, ... }:
{
home.sessionVariables = lib.mkIf (config.enableShell && config.graphical) {
TERMINAL = "ghostty";
};
# nixGL is now provided as a flake input
nixGL.packages = nixgl.packages.${pkgs.system};
nixGL.defaultWrapper = "mesa";
nixGL.installScripts = [ "mesa" ];
programs.ghostty = lib.mkIf (config.enableShell && config.graphical) {
enable = true;
enableZshIntegration = true;
package = config.lib.nixGL.wrap pkgs.ghostty;
settings = {
# command = "TERM=xterm-256color /usr/bin/bash";
font-size = 12;
font-family = "Source Code Pro";
# theme = "idleToes";
# theme = "CGA";
theme = "catppuccin-mocha";
# theme = "CobaltNext";
# clipboard-read = "allow";
copy-on-select = true;
shell-integration = "zsh";
shell-integration-features = [ "no-title" "sudo" ];
gtk-single-instance = true;
window-padding-balance = true ;
window-padding-x = 5;
window-padding-y = 5;
initial-window = true;
resize-overlay = "never";
# Example: https://gist.github.com/adibhanna/c552c452fb244b3b721e3c2432e85cde
keybind = [
"ctrl+s>n=new_split:down"
"ctrl+t>n=new_tab"
"ctrl+t>1=goto_tab:1"
"ctrl+t>2=goto_tab:2"
"ctrl+t>3=goto_tab:3"
"ctrl+s>i=goto_split:up"
"ctrl+s>k=goto_split:down"
];
# window-position-x = 500;
# window-position-y = 500;
window-height = 40;
window-width = 200;
};
};
# https://github.com/ghostty-org/ghostty/discussions/3763#discussioncomment-11699970
xdg.desktopEntries."com.mitchellh.ghostty" = lib.mkIf (config.enableShell && config.graphical) {
name = "Ghostty";
type = "Application";
comment = "A terminal emulator";
exec = "ghostty";
icon = "com.mitchellh.ghostty";
terminal = false;
startupNotify = true;
categories = [ "System" "TerminalEmulator" ];
settings = {
Keywords = "terminal;tty;pty;";
X-GNOME-UsesNotifications = "true";
X-TerminalArgExec = "-e";
X-TerminalArgTitle = "--title=";
X-TerminalArgAppId = "--class=";
X-TerminalArgDir = "--working-directory=";
X-TerminalArgHold = "--wait-after-command";
};
actions = {
new-window = {
name = "New Window";
exec = "ghostty";
};
};
};
# https://discourse.nixos.org/t/apps-installed-via-home-manager-are-not-visible-within-gnome/48252/2
# home.activation.copyDesktopFiles = lib.hm.dag.entryAfter ["installPackages"] ''
# if [ "$XDG_CURRENT_DESKTOP" = "GNOME" ]; then
# mkdir -p "${config.home.homeDirectory}/.local/share/applications"
# if [ -d "${config.home.homeDirectory}/.local/share/applications/nix" ]; then
# rm -rf "${config.home.homeDirectory}/.local/share/applications/nix"
# fi
# ln -sf "${config.home.homeDirectory}/.nix-profile/share/applications" \
# ${config.home.homeDirectory}/.local/share/applications/nix
# mkdir -p "${config.home.homeDirectory}/.local/share/icons"
# if [ -d "${config.home.homeDirectory}/.local/share/icons/nix" ]; then
# rm -rf "${config.home.homeDirectory}/.local/share/icons/nix"
# fi
# ln -sf "${config.home.homeDirectory}/.nix-profile/share/icons" \
# ${config.home.homeDirectory}/.local/share/icons/nix
# fi
# '';
# https://wiki.nixos.org/wiki/GNOME
# https://hoverbear.org/blog/declarative-gnome-configuration-in-nixos/#setting-gnome-options
# dconf.settings = {
# "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0" = {
# "binding" = "<Super>Return";
# "command" = "ghostty";
# "name" = "Terminal";
# };
# };
}

View File

@@ -6,7 +6,7 @@
echo "Hello from ~/.config/home-manager/home.nix!"
'')
];
programs.zsh = lib.mkIf config.shell {
programs.zsh = lib.mkIf config.enableShell {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;

View File

@@ -0,0 +1,19 @@
{ config, lib, pkgs, ... }:
{
programs.vscode = lib.mkIf config.graphical {
enable = true;
package = pkgs.vscode;
profiles.default.extensions = with pkgs.vscode-extensions; [
mhutchie.git-graph
ms-vscode-remote.vscode-remote-extensionpack
ms-python.python
ms-python.vscode-pylance
ms-toolsai.jupyter
charliermarsh.ruff
github.vscode-pull-request-github
github.vscode-github-actions
github.copilot
catppuccin.catppuccin-vsc
];
};
}

8
nixosModules/default.nix Normal file
View File

@@ -0,0 +1,8 @@
{ inputs, config, pkgs, lib, ... }:
{
imports = [
./options.nix
./scripts.nix
./steam.nix
];
}

View File

@@ -30,7 +30,7 @@
description = "Whether enable all the root user stuff";
};
options.shell = lib.mkOption {
options.enableShell = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Whether to enable all the zsh stuff";
@@ -53,4 +53,22 @@
default = [];
description = "Additional Home Manager modules to import";
};
options.docker = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Whether to enable docker stuff";
};
options.graphical = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Whether this system has a graphical environment";
};
options.steam = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Whether this system has Steam installed";
};
}

View File

@@ -5,12 +5,12 @@ in
{
environment.systemPackages = with pkgs; [
(pkgs.writeShellScriptBin "nfs" ''
sudo nixos-rebuild switch --flake $(readlink -f /etc/nixos)#${hostName} --impure
sudo nixos-rebuild switch --flake $(readlink -f /etc/nixos)#${hostName} --impure
'')
(pkgs.writeShellScriptBin "nfsu" ''
FLAKE=$(readlink -f /etc/nixos)
nix flake update --flake $FLAKE --impure
sudo nixos-rebuild switch --flake $FLAKE#${hostName} --impure
FLAKE=$(readlink -f /etc/nixos)
nix flake update --flake $FLAKE --impure
sudo nixos-rebuild switch --flake $FLAKE#${hostName} --impure
'')
];
}

10
nixosModules/steam.nix Normal file
View File

@@ -0,0 +1,10 @@
{ config, pkgs, lib, ... }:
{
programs.steam = lib.mkIf config.steam {
enable = true;
gamescopeSession.enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
};
}