Compare commits
	
		
			3 Commits
		
	
	
		
			51beed138e
			...
			obsidian
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 45de738d59 | |||
| e6ae0c4c35 | |||
| 739f2e125f | 
							
								
								
									
										12
									
								
								flake.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										12
									
								
								flake.lock
									
									
									
										generated
									
									
									
								
							@@ -64,11 +64,11 @@
 | 
			
		||||
        "zon2nix": "zon2nix"
 | 
			
		||||
      },
 | 
			
		||||
      "locked": {
 | 
			
		||||
        "lastModified": 1754941490,
 | 
			
		||||
        "narHash": "sha256-2AJf0q4u1zakqjr0y4dCyqzdDSil8P5m2YpZxAAzJJw=",
 | 
			
		||||
        "lastModified": 1753816554,
 | 
			
		||||
        "narHash": "sha256-eyFfBXb5IJaNTGTdkjpWKSMTs8wiJ0i+9n5jUKtVFa4=",
 | 
			
		||||
        "owner": "ghostty-org",
 | 
			
		||||
        "repo": "ghostty",
 | 
			
		||||
        "rev": "5bf632e9cc0e77a578bad983b0cbdf0451ce87d4",
 | 
			
		||||
        "rev": "c78d32074ebab14d2060e5cd3c7667cbe37ab8ee",
 | 
			
		||||
        "type": "github"
 | 
			
		||||
      },
 | 
			
		||||
      "original": {
 | 
			
		||||
@@ -129,11 +129,11 @@
 | 
			
		||||
    },
 | 
			
		||||
    "nixpkgs_2": {
 | 
			
		||||
      "locked": {
 | 
			
		||||
        "lastModified": 1754767907,
 | 
			
		||||
        "narHash": "sha256-8OnUzRQZkqtUol9vuUuQC30hzpMreKptNyET2T9lB6g=",
 | 
			
		||||
        "lastModified": 1753749649,
 | 
			
		||||
        "narHash": "sha256-+jkEZxs7bfOKfBIk430K+tK9IvXlwzqQQnppC2ZKFj4=",
 | 
			
		||||
        "owner": "nixos",
 | 
			
		||||
        "repo": "nixpkgs",
 | 
			
		||||
        "rev": "c5f08b62ed75415439d48152c2a784e36909b1bc",
 | 
			
		||||
        "rev": "1f08a4df998e21f4e8be8fb6fbf61d11a1a5076a",
 | 
			
		||||
        "type": "github"
 | 
			
		||||
      },
 | 
			
		||||
      "original": {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										15
									
								
								flake.nix
									
									
									
									
									
								
							
							
						
						
									
										15
									
								
								flake.nix
									
									
									
									
									
								
							@@ -2,11 +2,16 @@
 | 
			
		||||
  description = "Wyatt's nix configuration suite";
 | 
			
		||||
  inputs = {
 | 
			
		||||
    nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
 | 
			
		||||
    nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
 | 
			
		||||
    nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=v0.6.0";
 | 
			
		||||
    home-manager = {
 | 
			
		||||
      url = "github:nix-community/home-manager/release-25.05";
 | 
			
		||||
      inputs.nixpkgs.follows = "nixpkgs";
 | 
			
		||||
    };
 | 
			
		||||
    home-manager-unstable = {
 | 
			
		||||
      url = "https://github.com/nix-community/home-manager";
 | 
			
		||||
      inputs.nixpkgs.follows = "nixpkgs-unstable";
 | 
			
		||||
    };
 | 
			
		||||
    darwin = {
 | 
			
		||||
      url = "github:lnl7/nix-darwin/nix-darwin-25.05";
 | 
			
		||||
      inputs.nixpkgs.follows = "nixpkgs";
 | 
			
		||||
@@ -17,9 +22,11 @@
 | 
			
		||||
  outputs = inputs @ {
 | 
			
		||||
    self,
 | 
			
		||||
    nixpkgs,
 | 
			
		||||
    nixpkgs-unstable,
 | 
			
		||||
    nix-flatpak,
 | 
			
		||||
    darwin,
 | 
			
		||||
    home-manager,
 | 
			
		||||
    home-manager-unstable,
 | 
			
		||||
    ghostty,
 | 
			
		||||
    ...
 | 
			
		||||
  }: let
 | 
			
		||||
@@ -28,6 +35,10 @@
 | 
			
		||||
    extraSpecialArgs = {
 | 
			
		||||
      inherit userName userEmail ghostty;
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    obsidianOverlay = final: prev: {
 | 
			
		||||
      obsidian = nixpkgs-unstable.legacyPackages.${final.system}.obsidian;
 | 
			
		||||
    };
 | 
			
		||||
  in {
 | 
			
		||||
    meta = import ./meta;
 | 
			
		||||
 | 
			
		||||
@@ -66,6 +77,10 @@
 | 
			
		||||
        ./modules/common
 | 
			
		||||
        ./modules/machine/cloud
 | 
			
		||||
 | 
			
		||||
        {
 | 
			
		||||
          nixpkgs.overlays = [ obsidianOverlay ];
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        home-manager.nixosModules.home-manager
 | 
			
		||||
        {
 | 
			
		||||
          home-manager.useGlobalPkgs = true;
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,5 @@
 | 
			
		||||
{
 | 
			
		||||
  config,
 | 
			
		||||
  lib,
 | 
			
		||||
  pkgs,
 | 
			
		||||
  userName,
 | 
			
		||||
@@ -13,7 +14,7 @@
 | 
			
		||||
  };
 | 
			
		||||
in {
 | 
			
		||||
  # Import sub modules
 | 
			
		||||
  imports = map (module: import module {inherit lib pkgs dirs userName userEmail ghostty;}) [
 | 
			
		||||
  imports = map (module: import module {inherit config lib pkgs dirs userName userEmail ghostty;}) [
 | 
			
		||||
    ./atuin.nix
 | 
			
		||||
    ./shell.nix
 | 
			
		||||
    ./packages
 | 
			
		||||
@@ -27,6 +28,7 @@ in {
 | 
			
		||||
    ./browser.nix
 | 
			
		||||
    ./zellij.nix
 | 
			
		||||
    ./bat.nix
 | 
			
		||||
    ./obsidian.nix
 | 
			
		||||
  ];
 | 
			
		||||
 | 
			
		||||
  # Home Manager needs a bit of information about you and the
 | 
			
		||||
@@ -56,7 +58,7 @@ in {
 | 
			
		||||
      size = 22;
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    stateVersion = "24.11";
 | 
			
		||||
    stateVersion = "25.05";
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  # Let Home Manager install and manage itself.
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										53
									
								
								home/obsidian.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										53
									
								
								home/obsidian.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,53 @@
 | 
			
		||||
{ config, home-manager-unstable, pkgs, ...}: {
 | 
			
		||||
  home.packages = with pkgs; [
 | 
			
		||||
    obsidian
 | 
			
		||||
    obsidian-export
 | 
			
		||||
  ];
 | 
			
		||||
  programs.obsidian = {
 | 
			
		||||
    enable = true;
 | 
			
		||||
    package = 
 | 
			
		||||
    vaults = {
 | 
			
		||||
      "notes" = {
 | 
			
		||||
        enable = true;
 | 
			
		||||
        target = "${config.home.homeDirectory}/Documents/obsidian/notes";
 | 
			
		||||
      };
 | 
			
		||||
      "work-notes" = {
 | 
			
		||||
        enable = true;
 | 
			
		||||
        target = "${config.home.homeDirectory}/Documents/obsidian/work-notes";
 | 
			
		||||
      };
 | 
			
		||||
    };
 | 
			
		||||
    # defaultSettings = {
 | 
			
		||||
    #   themes = [ "catppuccin" ];
 | 
			
		||||
    # };
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  home.activation.obsidianRepos = config.lib.dag.entryAfter ["writeBoundary"] ''
 | 
			
		||||
    REPOS_DIR="${config.home.homeDirectory}/Documents/obsidian"
 | 
			
		||||
    
 | 
			
		||||
    # Create the repos directory if it doesn't exist
 | 
			
		||||
    mkdir -p "$REPOS_DIR"
 | 
			
		||||
    
 | 
			
		||||
    # Function to clone or update a repository
 | 
			
		||||
    clone_or_update() {
 | 
			
		||||
      local repo_url="$1"
 | 
			
		||||
      local vault_name="$2"
 | 
			
		||||
      local vault_path="$REPOS_DIR/$vault_name"
 | 
			
		||||
      
 | 
			
		||||
      if [ -d "$vault_path/.git" ]; then
 | 
			
		||||
        echo "Updating existing vault: $vault_name"
 | 
			
		||||
        cd "$vault_path"
 | 
			
		||||
        ${pkgs.git}/bin/git pull origin main || ${pkgs.git}/bin/git pull origin master || true
 | 
			
		||||
      else
 | 
			
		||||
        echo "Cloning new vault: $vault_name"
 | 
			
		||||
        rm -rf "$vault_path"  # Remove if exists but not a git repo
 | 
			
		||||
        ${pkgs.git}/bin/git clone "$repo_url" "$vault_path" || true
 | 
			
		||||
      fi
 | 
			
		||||
    }
 | 
			
		||||
    
 | 
			
		||||
    # Clone repositories
 | 
			
		||||
    clone_or_update "https://scm.wyattjmiller.com/NoteFolio/notes.git" "notes"
 | 
			
		||||
    clone_or_update "https://scm.wyattjmiller.com/NoteFolio/work-notes.git" "work-notes"
 | 
			
		||||
    
 | 
			
		||||
    echo "Obsidian repository vaults setup complete in $REPOS_DIR"
 | 
			
		||||
  '';
 | 
			
		||||
}
 | 
			
		||||
@@ -23,7 +23,6 @@
 | 
			
		||||
    fh
 | 
			
		||||
    aria2
 | 
			
		||||
    yt-dlp
 | 
			
		||||
    obsidian
 | 
			
		||||
    vscode
 | 
			
		||||
    weechat
 | 
			
		||||
    inetutils
 | 
			
		||||
 
 | 
			
		||||
@@ -147,5 +147,20 @@ in {
 | 
			
		||||
  programs.waybar = {
 | 
			
		||||
    enable = pkgs.stdenv.isLinux;
 | 
			
		||||
    systemd.enable = true;
 | 
			
		||||
 | 
			
		||||
    package = pkgs.waybar.overrideAttrs (old: {
 | 
			
		||||
      version = "0.13.0";
 | 
			
		||||
 | 
			
		||||
      src = pkgs.fetchFromGitHub {
 | 
			
		||||
        owner = "Alexays";
 | 
			
		||||
        repo = "Waybar";
 | 
			
		||||
        rev = "0fcda9afa519eb84deda68c051f7938a6c6bdbce";
 | 
			
		||||
        sha256 = "sha256-Puo/Y4qotb6uEEe9vbu/hyFXwLntr48R2C6mrmDKs0c=";
 | 
			
		||||
        fetchSubmodules = true;
 | 
			
		||||
      };
 | 
			
		||||
 | 
			
		||||
      buildInputs = old.buildInputs ++ [ pkgs.fftw ];
 | 
			
		||||
      mesonFlags = (old.mesonFlags or []) ++ [ "-Dcava=disabled" ];
 | 
			
		||||
    });
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,19 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  config,
 | 
			
		||||
  lib,
 | 
			
		||||
  pkgs,
 | 
			
		||||
  ...
 | 
			
		||||
}:
 | 
			
		||||
with lib; let
 | 
			
		||||
  cfg = config.appimage;
 | 
			
		||||
in {
 | 
			
		||||
  options.appimage = {
 | 
			
		||||
    enable = mkEnableOption "AppImage support";
 | 
			
		||||
  };
 | 
			
		||||
  config = mkIf cfg.enable {
 | 
			
		||||
    environment.systemPackages = with pkgs; [
 | 
			
		||||
      appimageupdate
 | 
			
		||||
      appimage-run
 | 
			
		||||
    ];
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
@@ -11,7 +11,6 @@
 | 
			
		||||
    "info.beyondallreason.bar"
 | 
			
		||||
    "io.dbeaver.DBeaverCommunity"
 | 
			
		||||
    "io.openrct2.OpenRCT2"
 | 
			
		||||
    "md.obsidian.Obsidian"
 | 
			
		||||
    "org.prismlauncher.PrismLauncher"
 | 
			
		||||
    "sh.cider.Cider"
 | 
			
		||||
  ];
 | 
			
		||||
@@ -21,13 +20,11 @@ in {
 | 
			
		||||
      inherit lib pkgs flatpakPackages;
 | 
			
		||||
    })
 | 
			
		||||
    ../../apps/gaming.nix
 | 
			
		||||
    ../../apps/appimage.nix
 | 
			
		||||
    ../../graphics
 | 
			
		||||
    ../../pwrMgmt
 | 
			
		||||
    ../../networking/core.nix
 | 
			
		||||
    ../../sound/pipewire.nix
 | 
			
		||||
    ../../sound/shairport.nix
 | 
			
		||||
    ../../sound/focusrite.nix
 | 
			
		||||
    ../../virtualization/podman.nix
 | 
			
		||||
    ../../virtualization/hardware.nix
 | 
			
		||||
  ];
 | 
			
		||||
@@ -36,13 +33,9 @@ in {
 | 
			
		||||
  nix.settings.experimental-features = ["nix-command" "flakes"];
 | 
			
		||||
 | 
			
		||||
  # Custom kernel/boot stuff
 | 
			
		||||
  boot = {
 | 
			
		||||
    kernelPackages = pkgs.linuxPackages_latest;
 | 
			
		||||
    loader = {
 | 
			
		||||
      systemd-boot.enable = true;
 | 
			
		||||
      efi.canTouchEfiVariables = true;
 | 
			
		||||
    };
 | 
			
		||||
  };
 | 
			
		||||
  boot.kernelPackages = pkgs.linuxPackages_latest;
 | 
			
		||||
  boot.loader.systemd-boot.enable = true;
 | 
			
		||||
  boot.loader.efi.canTouchEfiVariables = true;
 | 
			
		||||
 | 
			
		||||
  # Enable Bluetooth if present
 | 
			
		||||
  hardware.bluetooth.enable = true;
 | 
			
		||||
@@ -69,6 +62,21 @@ in {
 | 
			
		||||
    wl-clip-persist
 | 
			
		||||
  ];
 | 
			
		||||
 | 
			
		||||
  # Enable OpenSSH
 | 
			
		||||
  services.openssh.enable = true;
 | 
			
		||||
 | 
			
		||||
  # Enable keyring
 | 
			
		||||
  services.gnome.gnome-keyring.enable = true;
 | 
			
		||||
 | 
			
		||||
  # Enable GnuPG
 | 
			
		||||
  programs.gnupg.agent = {
 | 
			
		||||
    enable = true;
 | 
			
		||||
    enableSSHSupport = true;
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  # Enable SUID wrappers (some programs need them)
 | 
			
		||||
  programs.mtr.enable = true;
 | 
			
		||||
 | 
			
		||||
  # Enable Polkit
 | 
			
		||||
  security.polkit.enable = true;
 | 
			
		||||
 | 
			
		||||
@@ -136,39 +144,14 @@ in {
 | 
			
		||||
    networkManager.enable = true;
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  programs = {
 | 
			
		||||
    # Enable GnuPG
 | 
			
		||||
    gnupg.agent = {
 | 
			
		||||
      enable = true;
 | 
			
		||||
      enableSSHSupport = true;
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    # Enable SUID wrappers (some programs need them)
 | 
			
		||||
    mtr.enable = true;
 | 
			
		||||
 | 
			
		||||
    # Enable dconf
 | 
			
		||||
    dconf.enable = true;
 | 
			
		||||
  };
 | 
			
		||||
  # Enable dconf
 | 
			
		||||
  programs.dconf.enable = true;
 | 
			
		||||
 | 
			
		||||
  # Add username to groups "wheel" and "video" - more may be added here later
 | 
			
		||||
  users.users.${userName}.extraGroups = ["wheel" "video" "gamemode" "podman" "network"];
 | 
			
		||||
 | 
			
		||||
  services = {
 | 
			
		||||
    # Enable OpenSSH
 | 
			
		||||
    openssh.enable = true;
 | 
			
		||||
 | 
			
		||||
    # Enable keyring
 | 
			
		||||
    gnome.gnome-keyring.enable = true;
 | 
			
		||||
 | 
			
		||||
    # Flatpak packages (see ../../apps/flatpak.nix)
 | 
			
		||||
    flatpak.packages = flatpakPackages;
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  # Focusrite Scarlett audio interface support (see ../../sound/focusrite.nix)
 | 
			
		||||
  sound.hardware.focusrite.enable = true;
 | 
			
		||||
 | 
			
		||||
  # AppImage support
 | 
			
		||||
  appimage.enable = true;
 | 
			
		||||
  # Flatpak packages (see ../../apps/flatpak.nix)
 | 
			
		||||
  services.flatpak.packages = flatpakPackages;
 | 
			
		||||
 | 
			
		||||
  # XDG stuff
 | 
			
		||||
  xdg = {
 | 
			
		||||
@@ -176,12 +159,12 @@ in {
 | 
			
		||||
      enable = true;
 | 
			
		||||
      config = {
 | 
			
		||||
        sway = {
 | 
			
		||||
          default = ["wlr" "gtk"];
 | 
			
		||||
          "org.freedesktop.impl.portal.Secret" = ["gnome-keyring"];
 | 
			
		||||
          default = [ "wlr" "gtk" ];
 | 
			
		||||
          "org.freedesktop.impl.portal.Secret" = [ "gnome-keyring" ];
 | 
			
		||||
        };
 | 
			
		||||
        common = {
 | 
			
		||||
          default = ["gtk"];
 | 
			
		||||
          "org.freedesktop.impl.portal.Secret" = ["gnome-keyring"];
 | 
			
		||||
          default = [ "gtk" ];
 | 
			
		||||
          "org.freedesktop.impl.portal.Secret" = [ "gnome-keyring" ];
 | 
			
		||||
        };
 | 
			
		||||
      };
 | 
			
		||||
      extraPortals = with pkgs; [
 | 
			
		||||
 
 | 
			
		||||
@@ -1,33 +0,0 @@
 | 
			
		||||
# Must be paired with the pipewire Nix module, this does nothing but install packages
 | 
			
		||||
{
 | 
			
		||||
  config,
 | 
			
		||||
  lib,
 | 
			
		||||
  pkgs,
 | 
			
		||||
  ...
 | 
			
		||||
}:
 | 
			
		||||
with lib; let
 | 
			
		||||
  cfg = config.sound.hardware.focusrite;
 | 
			
		||||
in {
 | 
			
		||||
  options.focusrite = {
 | 
			
		||||
    enable = mkEnableOption "Focusrite audio interface support";
 | 
			
		||||
    guiSupport = mkOption {
 | 
			
		||||
      type = types.bool;
 | 
			
		||||
      default = false;
 | 
			
		||||
      description = "Enable GUI support for Focusrite Scarlett audio interface (installs alsa-scarlett-gui)";
 | 
			
		||||
    };
 | 
			
		||||
  };
 | 
			
		||||
  config = mkIf cfg.enable (mkMerge [
 | 
			
		||||
    {
 | 
			
		||||
      environment.systemPackages = with pkgs;
 | 
			
		||||
        [
 | 
			
		||||
          scarlett2
 | 
			
		||||
          alsa-scarlett-gui
 | 
			
		||||
        ]
 | 
			
		||||
        ++ (
 | 
			
		||||
          if cfg.guiSupport
 | 
			
		||||
          then [pkgs.alsa-scarlett-gui]
 | 
			
		||||
          else []
 | 
			
		||||
        );
 | 
			
		||||
    }
 | 
			
		||||
  ]);
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user