Compare commits
No commits in common. "cf37c5191b1545f4832c9d599cc4c03ded15496f" and "6685dd8e70c72853ef29acb217082ade33ab5ae0" have entirely different histories.
cf37c5191b
...
6685dd8e70
3 changed files with 11 additions and 26 deletions
|
@ -81,7 +81,6 @@
|
||||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||||
users.users.fish = {
|
users.users.fish = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
shell = pkgs.fish;
|
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
"wheel" # Enable ‘sudo’ for the user.
|
"wheel" # Enable ‘sudo’ for the user.
|
||||||
"dialout" # Enable serial access for the user.
|
"dialout" # Enable serial access for the user.
|
||||||
|
@ -94,18 +93,9 @@
|
||||||
fish
|
fish
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
programs.git = {
|
|
||||||
enable = true;
|
|
||||||
# extraConfig = {
|
|
||||||
# push = {
|
|
||||||
# autoSetupRemote = true;
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.firefox.enable = true;
|
programs.firefox.enable = true;
|
||||||
programs.neovim.enable = true;
|
programs.neovim.defaultEditor.enable = true;
|
||||||
#programs.neovim.defaultEditor.enable = true;
|
|
||||||
|
|
||||||
# List packages installed in system profile.
|
# List packages installed in system profile.
|
||||||
# You can use https://search.nixos.org/ to find more packages (and options).
|
# You can use https://search.nixos.org/ to find more packages (and options).
|
||||||
|
@ -116,7 +106,6 @@
|
||||||
|
|
||||||
# Some programs need SUID wrappers, can be configured further or are
|
# Some programs need SUID wrappers, can be configured further or are
|
||||||
# started in user sessions.
|
# started in user sessions.
|
||||||
programs.fish.enable = true;
|
|
||||||
programs.mtr.enable = true;
|
programs.mtr.enable = true;
|
||||||
programs.gnupg.agent = {
|
programs.gnupg.agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -1,4 +1,13 @@
|
||||||
{ pkgs, ... }:
|
{
|
||||||
|
inputs,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
userSettings,
|
||||||
|
systemSettings,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
home = {
|
home = {
|
||||||
stateVersion = "23.05"; # Don't change this unless upgrading Home Manager versions
|
stateVersion = "23.05"; # Don't change this unless upgrading Home Manager versions
|
||||||
|
@ -45,7 +54,6 @@
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
btop.enable = true;
|
btop.enable = true;
|
||||||
fish.enable = true;
|
|
||||||
hyfetch.enable = true;
|
hyfetch.enable = true;
|
||||||
|
|
||||||
gh = {
|
gh = {
|
||||||
|
@ -53,17 +61,6 @@
|
||||||
gitCredentialHelper.enable = true;
|
gitCredentialHelper.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
ghostty = {
|
|
||||||
enable = true;
|
|
||||||
shader = "cursor-smear-black.glsl";
|
|
||||||
settings = {
|
|
||||||
theme = "citruszest";
|
|
||||||
adjust-cursor-thickness = 1;
|
|
||||||
background-opacity = 0.9;
|
|
||||||
background-blur = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# Uncomment if you want to use MangoHud system-wide
|
# Uncomment if you want to use MangoHud system-wide
|
||||||
# mangohud.enable = true;
|
# mangohud.enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
vim.languages.svelte.enable = true;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue