remember to import the fonts also
This commit is contained in:
parent
aea88565bd
commit
1fd6de2551
2 changed files with 56 additions and 51 deletions
|
@ -25,6 +25,8 @@
|
||||||
../../modules/desktop/sway.nix
|
../../modules/desktop/sway.nix
|
||||||
../../modules/desktop/niri.nix
|
../../modules/desktop/niri.nix
|
||||||
|
|
||||||
|
# Fonts
|
||||||
|
../../modules/desktop/fonts.nix
|
||||||
|
|
||||||
# Development tools
|
# Development tools
|
||||||
../../modules/development/tools.nix
|
../../modules/development/tools.nix
|
||||||
|
|
|
@ -1,11 +1,13 @@
|
||||||
# Primary User Configuration - geir
|
# Primary User Configuration - geir
|
||||||
# Main user account for development and desktop use
|
# Main user account for development and desktop use
|
||||||
{ config, pkgs, ... }:
|
|
||||||
let
|
|
||||||
# Import custom packages from the flake
|
|
||||||
homeLabPackages = import ../../packages { inherit pkgs; };
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
# Import custom packages from the flake
|
||||||
|
homeLabPackages = import ../../packages {inherit pkgs;};
|
||||||
|
in {
|
||||||
users.users.geir = {
|
users.users.geir = {
|
||||||
description = "Geir Okkenhaug Jerstad - Primary User";
|
description = "Geir Okkenhaug Jerstad - Primary User";
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
|
@ -49,7 +51,8 @@ in
|
||||||
firefox
|
firefox
|
||||||
chromium
|
chromium
|
||||||
vesktop
|
vesktop
|
||||||
vivaldi vivaldi-ffmpeg-codecs
|
vivaldi
|
||||||
|
vivaldi-ffmpeg-codecs
|
||||||
|
|
||||||
# Shell Enhancement & Fun
|
# Shell Enhancement & Fun
|
||||||
nerdfetch
|
nerdfetch
|
||||||
|
@ -113,7 +116,7 @@ in
|
||||||
TERMINAL = "kitty";
|
TERMINAL = "kitty";
|
||||||
|
|
||||||
# Git configuration
|
# Git configuration
|
||||||
GIT_EDITOR = "emacs";
|
GIT_EDITOR = "nano";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Comprehensive zsh configuration for geir
|
# Comprehensive zsh configuration for geir
|
||||||
|
@ -149,7 +152,7 @@ in
|
||||||
histFile = "$HOME/.histfile";
|
histFile = "$HOME/.histfile";
|
||||||
|
|
||||||
# Shell options
|
# Shell options
|
||||||
setOptions = [ "autocd" "extendedglob" ];
|
setOptions = ["autocd" "extendedglob"];
|
||||||
|
|
||||||
# Interactive shell initialization
|
# Interactive shell initialization
|
||||||
interactiveShellInit = ''
|
interactiveShellInit = ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue