Compare commits
2 commits
aba9538d4e
...
e61147820c
Author | SHA1 | Date | |
---|---|---|---|
|
e61147820c | ||
|
8a1031ce29 |
|
@ -1,3 +1,5 @@
|
||||||
|
# this is for options not managed bysaturnConfig, added by the user
|
||||||
|
# again this is an example template not meant to be used
|
||||||
{ ... } :
|
{ ... } :
|
||||||
# . + . . . . . .
|
# . + . . . . . .
|
||||||
# . . . *
|
# . . . *
|
||||||
|
@ -73,3 +75,4 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
59
home.nix
59
home.nix
|
@ -1,22 +1,29 @@
|
||||||
# all my home stuff :3
|
{ config, pkgs, ... }:
|
||||||
sysConf: { config, pkgs, lib, ... }:
|
|
||||||
{
|
{
|
||||||
home.sessionVariables = {
|
# Home Manager needs a bit of information about you and the paths it should
|
||||||
# system configuration
|
# manage.
|
||||||
EDITOR = "nvim";
|
home.username = "hive";
|
||||||
|
home.homeDirectory = "/home/hive";
|
||||||
|
|
||||||
# cleanup homedir
|
# This value determines the Home Manager release that your configuration is
|
||||||
CARGO_HOME = "${config.xdg.dataHome}/cargo";
|
# compatible with. This helps avoid breakage when a new Home Manager release
|
||||||
|
# introduces backwards incompatible changes.
|
||||||
|
#
|
||||||
|
# You should not change this value, even if you update Home Manager. If you do
|
||||||
|
# want to update the value, then make sure to first check the Home Manager
|
||||||
|
# release notes.
|
||||||
|
home.stateVersion = "23.05"; # Please read the comment before changing.
|
||||||
|
|
||||||
# fish config
|
# The home.packages option allows you to install Nix packages into your
|
||||||
fish_greeting = "✨️ heya ${sysConf.user}, welcome to ${sysConf.prettyHost} ~";
|
# environment.
|
||||||
};
|
|
||||||
# installing my packages uvu
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
bat
|
bat
|
||||||
diceware
|
diceware
|
||||||
pwgen
|
pwgen
|
||||||
kitty
|
kitty
|
||||||
|
git
|
||||||
|
neovim
|
||||||
schildichat-desktop
|
schildichat-desktop
|
||||||
dino
|
dino
|
||||||
mangohud
|
mangohud
|
||||||
|
@ -44,6 +51,33 @@ sysConf: { config, pkgs, lib, ... }:
|
||||||
appindicator
|
appindicator
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
||||||
|
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
||||||
|
# plain files is through 'home.file'.
|
||||||
|
home.file = {
|
||||||
|
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
|
||||||
|
# # the Nix store. Activating the configuration will then make '~/.screenrc' a
|
||||||
|
# # symlink to the Nix store copy.
|
||||||
|
# ".screenrc".source = dotfiles/screenrc;
|
||||||
|
|
||||||
|
# # You can also set the file content immediately.
|
||||||
|
# ".gradle/gradle.properties".text = ''
|
||||||
|
# org.gradle.console=verbose
|
||||||
|
# org.gradle.daemon.idletimeout=3600000
|
||||||
|
# '';
|
||||||
|
};
|
||||||
|
|
||||||
|
home.sessionVariables = {
|
||||||
|
# system configuration
|
||||||
|
EDITOR = "nvim";
|
||||||
|
|
||||||
|
# cleanup homedir
|
||||||
|
CARGO_HOME = "${config.xdg.dataHome}/cargo";
|
||||||
|
|
||||||
|
# fish config
|
||||||
|
fish_greeting = "✨️ heya ${config.home.username}, welcome to $(hostname) ~";
|
||||||
|
};
|
||||||
|
|
||||||
# configure programs
|
# configure programs
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
|
@ -75,7 +109,4 @@ fish_vi_key_bindings
|
||||||
};
|
};
|
||||||
programs.browserpass.enable = true;
|
programs.browserpass.enable = true;
|
||||||
programs.gpg.enable = true;
|
programs.gpg.enable = true;
|
||||||
|
|
||||||
# don't uh, change this or something might break lol idk
|
|
||||||
home.stateVersion = "22.11";
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue