Compare commits
7 Commits
1dae2173af
...
523609ea95
| Author | SHA1 | Date | |
|---|---|---|---|
| 523609ea95 | |||
| a56a99ca3f | |||
| 68bd931f30 | |||
| 03a49beb1f | |||
| 368f5d9f46 | |||
| 23e168431d | |||
| 576a13ea8f |
@@ -23,7 +23,6 @@
|
||||
inherit locale;
|
||||
};
|
||||
in {
|
||||
|
||||
homeConfigurations = {
|
||||
"autumn@yukigekko" = home-manager.lib.homeManagerConfiguration {
|
||||
extraSpecialArgs = specialArgs;
|
||||
@@ -54,6 +53,5 @@
|
||||
./system/lesbos/configuration.nix
|
||||
];
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -53,6 +53,7 @@
|
||||
# wayland.windowManager.river.enable = true;
|
||||
imports = [
|
||||
../packages/alacritty/alacritty.nix
|
||||
../packages/crawl/crawl.nix
|
||||
../packages/direnv/direnv.nix
|
||||
../packages/fish/fish.nix
|
||||
../packages/fuzzel/fuzzel.nix
|
||||
|
||||
@@ -18,8 +18,8 @@
|
||||
};
|
||||
window = {
|
||||
opacity = 0.9;
|
||||
# blur = true;
|
||||
padding = {x=15;y=15;};
|
||||
blur = true;
|
||||
padding = {x=0;y=15;};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
48
home-manager/packages/crawl/crawl.nix
Normal file
48
home-manager/packages/crawl/crawl.nix
Normal file
@@ -0,0 +1,48 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
crawl
|
||||
];
|
||||
home.file.".crawlrc" = {
|
||||
text = ''
|
||||
# Character Creation Rules
|
||||
# fully_random = false
|
||||
# remember_name = false
|
||||
weapon = viable
|
||||
# species = viable
|
||||
# background = viable
|
||||
# Application Behavior Rules
|
||||
restart_after_game = maybe
|
||||
restart_after_save = false
|
||||
view_max_width = 81
|
||||
view_max_height = 21
|
||||
dump_on_save = true
|
||||
use_terminal_default_colours = true
|
||||
# Menu Behavior Rules
|
||||
easy_confirm = all
|
||||
sort_menus = auto:3
|
||||
assign_item_slot = backward
|
||||
show_god_gift = yes
|
||||
show_player_species = true
|
||||
# Autopickup Behavior Rules
|
||||
pickup_thrown = true
|
||||
drop_disables_autopickup = true
|
||||
autopickup_search = true
|
||||
autopickup_starting_ammo = true
|
||||
# Exploration Behavior Rules
|
||||
explore_greedy = true
|
||||
explore_greedy_visit = artefacts,glowing_items
|
||||
# explore_greedy_visit += stacks
|
||||
explore_stop = glowing_items,shops,altars,portals,branches,runed_doors
|
||||
rest_wait_both = true
|
||||
# Autofight Behavior Rules
|
||||
auto_switch = true
|
||||
autofight_fires = true
|
||||
autofight_caught = true
|
||||
fire_order_spell = attack
|
||||
|
||||
'';
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
".." = "cd ..";
|
||||
"..." = "cd ../..";
|
||||
"...." = "cd ../../..";
|
||||
"nc" = "~/nixos-servers/conf-editor.sh";
|
||||
"ls" = "eza";
|
||||
"z" = "zoxide";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -1,14 +1,31 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
|
||||
programs.fuzzel = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
||||
main = {
|
||||
font = "Hack Nerd Font:size=12";
|
||||
anchor = "top";
|
||||
width = "20";
|
||||
inner-pad = "15";
|
||||
horizontal-pad = "30";
|
||||
vertical-pad = "30";
|
||||
lines = "10";
|
||||
y-margin = "15";
|
||||
};
|
||||
colors = {
|
||||
background = "2b3339f2";
|
||||
text = "d3c6aaff";
|
||||
selection = "d3c6aaff";
|
||||
selection-text = "2b3339ff";
|
||||
border = "7fbbb3ff";
|
||||
};
|
||||
border = {
|
||||
width = "3";
|
||||
selection-radius = "3";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
|
||||
66
home-manager/packages/helix/dracula_trans.toml
Normal file
66
home-manager/packages/helix/dracula_trans.toml
Normal file
@@ -0,0 +1,66 @@
|
||||
# Author : Sebastian Zivota <loewenheim@mailbox.org>
|
||||
"comment" = { fg = "comment" }
|
||||
"constant" = { fg = "purple" }
|
||||
"constant.character.escape" = { fg = "pink" }
|
||||
"function" = { fg = "green" }
|
||||
"keyword" = { fg = "pink" }
|
||||
"operator" = { fg = "pink" }
|
||||
"punctuation" = { fg = "foreground" }
|
||||
"string" = { fg = "yellow" }
|
||||
"string.regexp" = { fg = "red" }
|
||||
"tag" = { fg = "pink" }
|
||||
"type" = { fg = "cyan", modifiers = ["italic"] }
|
||||
"type.enum.variant" = { fg = "foreground", modifiers = ["italic"] }
|
||||
"variable" = { fg = "foreground" }
|
||||
"variable.builtin" = { fg = "cyan", modifiers = ["italic"] }
|
||||
"variable.parameter" = { fg ="orange", modifiers = ["italic"] }
|
||||
|
||||
"diff.plus" = { fg = "green" }
|
||||
"diff.delta" = { fg = "orange" }
|
||||
"diff.minus" = { fg = "red" }
|
||||
|
||||
"ui.background" = {} #fg = "foreground", bg = "background" }
|
||||
"ui.cursor" = { fg = "background", bg = "orange", modifiers = ["dim"] }
|
||||
"ui.cursor.match" = { fg = "green", modifiers = ["underlined"] }
|
||||
"ui.cursor.primary" = { fg = "background", bg = "cyan", modifier = ["dim"] }
|
||||
"ui.help" = { fg = "foreground", bg = "background_dark" }
|
||||
"ui.linenr" = { fg = "comment" }
|
||||
"ui.linenr.selected" = { fg = "foreground" }
|
||||
"ui.menu" = { fg = "foreground", bg = "background_dark" }
|
||||
"ui.menu.selected" = { fg = "cyan", bg = "background_dark" }
|
||||
"ui.popup" = { fg = "foreground", bg = "background_dark" }
|
||||
"ui.selection" = { bg = "secondary_highlight" }
|
||||
"ui.selection.primary" = { bg = "primary_highlight" }
|
||||
"ui.statusline" = { fg = "foreground", bg = "background_dark" }
|
||||
"ui.statusline.inactive" = { fg = "comment", bg = "background_dark" }
|
||||
"ui.text" = { fg = "foreground" }
|
||||
"ui.text.focus" = { fg = "cyan" }
|
||||
"ui.window" = { fg = "foreground" }
|
||||
"ui.virtual" = { fg = "comment" }
|
||||
|
||||
"error" = { fg = "red" }
|
||||
"warning" = { fg = "cyan" }
|
||||
|
||||
"markup.heading" = { fg = "purple", modifiers = ["bold"] }
|
||||
"markup.list" = "cyan"
|
||||
"markup.bold" = { fg = "orange", modifiers = ["bold"] }
|
||||
"markup.italic" = { fg = "yellow", modifiers = ["italic"] }
|
||||
"markup.link.url" = "cyan"
|
||||
"markup.link.text" = "pink"
|
||||
"markup.quote" = { fg = "yellow", modifiers = ["italic"] }
|
||||
"markup.raw" = { fg = "foreground" }
|
||||
|
||||
[palette]
|
||||
background = "#282a36"
|
||||
background_dark = "#21222c"
|
||||
primary_highlight = "#800049"
|
||||
secondary_highlight = "#4d4f66"
|
||||
foreground = "#f8f8f2"
|
||||
comment = "#6272a4"
|
||||
red = "#ff5555"
|
||||
orange = "#ffb86c"
|
||||
yellow = "#f1fa8c"
|
||||
green = "#50fa7b"
|
||||
purple = "#bd93f9"
|
||||
cyan = "#8be9fd"
|
||||
pink = "#ff79c6"
|
||||
@@ -53,7 +53,7 @@
|
||||
"diff.delta" = "orange"
|
||||
"diff.minus" = "red"
|
||||
|
||||
"ui.background" = {}
|
||||
"ui.background" = { }
|
||||
"ui.cursor" = { fg = "bg0", bg = "fg" }
|
||||
"ui.cursor.match" = { fg = "orange", bg = "bg_yellow" }
|
||||
"ui.cursor.insert" = { fg = "bg0", bg = "grey1" }
|
||||
|
||||
@@ -5,9 +5,27 @@
|
||||
enable = true;
|
||||
themes = {
|
||||
everforest_dark_trans = ./everforest_dark_trans.toml;
|
||||
dracula_trans = ./dracula_trans.toml;
|
||||
};
|
||||
settings = {
|
||||
theme = "everforest_dark_trans";
|
||||
editor = {
|
||||
mouse = true;
|
||||
middle-click-paste = true;
|
||||
whitespace = {
|
||||
render = {
|
||||
space = "all";
|
||||
tab = "all";
|
||||
newline = "none";
|
||||
};
|
||||
characters = {
|
||||
space = "·";
|
||||
nbsp = "⍽";
|
||||
tab = "→";
|
||||
newline = "⏎";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
add_newline = true
|
||||
add_newline = false
|
||||
|
||||
|
||||
format = """
|
||||
@@ -27,13 +27,11 @@ $docker_context\
|
||||
[](fg:#B55690 bg:#A30262)\
|
||||
$time\
|
||||
[ ](fg:#A30262)\
|
||||
\n
|
||||
[█](fg:#D52D00)
|
||||
\n\
|
||||
$status\
|
||||
$cmd_duration\
|
||||
[ ](fg:#d52d00)
|
||||
"""
|
||||
|
||||
# Disable the blank line at the start of the prompt
|
||||
# add_newline = false
|
||||
|
||||
# You can also replace your username with a neat symbol like to save some space
|
||||
[username]
|
||||
show_always = true
|
||||
@@ -139,3 +137,20 @@ disabled = false
|
||||
time_format = "%R" # Hour:Minute Format
|
||||
style = "fg:#d3c6aa bg:#A30262"
|
||||
format = '[[ ♥ $time ](bg:#A30262)]($style)'
|
||||
|
||||
[status]
|
||||
disabled = false
|
||||
symbol = " "
|
||||
success_symbol = " "
|
||||
not_executable_symbol = " "
|
||||
not_found_symbol = " "
|
||||
sigint_symbol = " "
|
||||
signal_symbol = " "
|
||||
recognize_signal_code = false
|
||||
style = "fg:#d3c6aa bg:#D52D00"
|
||||
format = '[ $symbol ]($style)'
|
||||
|
||||
[cmd_duration]
|
||||
min_time = 10_000
|
||||
style = "fg:#d3c6aa bg:#d52d00"
|
||||
format = '[$duration]($style)'
|
||||
|
||||
@@ -3,6 +3,9 @@
|
||||
{
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
|
||||
profiles.autumn = {
|
||||
isDefault = true;
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -165,9 +165,9 @@
|
||||
font-size: 13px;
|
||||
}
|
||||
window#waybar {
|
||||
color: #545454;
|
||||
background-color: #e391e2;
|
||||
border-bottom: 3px solid #6e3a6d;
|
||||
color: #d3c6aa;
|
||||
background-color: #2b3339;
|
||||
border-bottom: 3px solid #7fbbb3;
|
||||
transition-property: background-color;
|
||||
transition-duration: .5s;
|
||||
}
|
||||
@@ -180,34 +180,35 @@
|
||||
box-shadow: inset 0 -3px transparent;
|
||||
border: 1px #000000 solid;
|
||||
border-radius: 0;
|
||||
color:#545454;
|
||||
color:#d3c6aa;
|
||||
|
||||
}
|
||||
button:hover {
|
||||
background: inherit;
|
||||
box-shadow: inset 0 -3px #ffffff;
|
||||
box-shadow: inset 0 -3px #7fbbb3;
|
||||
}
|
||||
|
||||
#tags button {
|
||||
padding: 0 15px;
|
||||
background-color: transparent;
|
||||
border: 2px solid #6e3a6d;
|
||||
border: 2px solid #d3c6aa;
|
||||
}
|
||||
|
||||
#tags button.occupied {
|
||||
background: #545454;
|
||||
color:#e391e2;
|
||||
background: #d3c6aa;
|
||||
border: 1px solid #2b3339;
|
||||
color:#2b3339;
|
||||
}
|
||||
|
||||
#tags button.focused {
|
||||
background-color: #6e3a6d;
|
||||
color: #e391e2;
|
||||
border: 1px solid #e391e2;
|
||||
border-bottom: 3px solid #e391e2;
|
||||
background-color: #7fbbb3;
|
||||
color: #2b3339;
|
||||
border: 1px solid #2b3339;
|
||||
border-bottom: 3px solid #2b3339;
|
||||
}
|
||||
|
||||
#tags button.urgent {
|
||||
background-color: #f38ba8;
|
||||
background-color: #e67e80;
|
||||
}
|
||||
|
||||
|
||||
@@ -223,7 +224,7 @@
|
||||
#tray,
|
||||
#power-profiles-daemon {
|
||||
padding: 0 8px;
|
||||
color:#545454;
|
||||
color:#d3c6aa;
|
||||
}
|
||||
|
||||
#window,
|
||||
|
||||
8
system/defaults/boot.nix
Normal file
8
system/defaults/boot.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{config, pkgs, ...}:
|
||||
|
||||
{
|
||||
boot.loader = {
|
||||
systemd-boot.enable = true;
|
||||
efi.canTouchEfiVariables = true;
|
||||
};
|
||||
}
|
||||
8
system/defaults/gaming.nix
Normal file
8
system/defaults/gaming.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{config, pkgs, ...}:
|
||||
|
||||
{
|
||||
programs = {
|
||||
steam.enable = true;
|
||||
gamemode.enable = true;
|
||||
};
|
||||
}
|
||||
18
system/defaults/locale.nix
Normal file
18
system/defaults/locale.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{config, pkgs, locale, ...}:
|
||||
|
||||
{
|
||||
i18n = {
|
||||
defaultLocale = "${locale}";
|
||||
extraLocaleSettings = {
|
||||
LC_ADDRESS = "${locale}";
|
||||
LC_IDENTIFICATION = "${locale}";
|
||||
LC_MEASUREMENT = "${locale}";
|
||||
LC_MONETARY = "${locale}";
|
||||
LC_NAME = "${locale}";
|
||||
LC_NUMERIC = "${locale}";
|
||||
LC_PAPER = "${locale}";
|
||||
LC_TELEPHONE = "${locale}";
|
||||
LC_TIME = "${locale}";
|
||||
};
|
||||
};
|
||||
}
|
||||
16
system/defaults/services.nix
Normal file
16
system/defaults/services.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{config, pkgs, ...}:
|
||||
|
||||
{
|
||||
services = {
|
||||
printing.enable = true;
|
||||
pulseaudio.enable = false;
|
||||
pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
};
|
||||
openssh.enable = true;
|
||||
flatpak.enable = true;
|
||||
};
|
||||
}
|
||||
9
system/defaults/users.nix
Normal file
9
system/defaults/users.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{config, pkgs, ...}:
|
||||
|
||||
{
|
||||
users.users.autumn = {
|
||||
isNormalUser = true;
|
||||
description = "Autumn";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
};
|
||||
}
|
||||
@@ -8,6 +8,16 @@
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
|
||||
#system configs
|
||||
../defaults/locale.nix
|
||||
../defaults/boot.nix
|
||||
../defaults/services.nix
|
||||
../defaults/gaming.nix
|
||||
|
||||
#system packages
|
||||
../packages/sddm/sddm.nix
|
||||
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
@@ -27,62 +37,15 @@
|
||||
# Set your time zone.
|
||||
time.timeZone = "${timezone}";
|
||||
|
||||
# Select internationalisation properties.
|
||||
i18n.defaultLocale = "${locale}";
|
||||
|
||||
i18n.extraLocaleSettings = {
|
||||
LC_ADDRESS = "${locale}";
|
||||
LC_IDENTIFICATION = "${locale}";
|
||||
LC_MEASUREMENT = "${locale}";
|
||||
LC_MONETARY = "${locale}";
|
||||
LC_NAME = "${locale}";
|
||||
LC_NUMERIC = "${locale}";
|
||||
LC_PAPER = "${locale}";
|
||||
LC_TELEPHONE = "${locale}";
|
||||
LC_TIME = "${locale}";
|
||||
};
|
||||
|
||||
|
||||
# Enable the KDE Plasma Desktop Environment.
|
||||
services.displayManager.sddm.enable = true;
|
||||
services.displayManager.sddm.wayland.enable = true;
|
||||
services.desktopManager.plasma6.enable = true;
|
||||
|
||||
# Configure keymap in X11
|
||||
# Enable CUPS to print documents.
|
||||
services.printing.enable = true;
|
||||
|
||||
# Enable sound with pipewire.
|
||||
services.pulseaudio.enable = false;
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
# If you want to use JACK applications, uncomment this
|
||||
#jack.enable = true;
|
||||
|
||||
# use the example session manager (no others are packaged yet so this is enabled by default,
|
||||
# no need to redefine it in your config for now)
|
||||
#media-session.enable = true;
|
||||
};
|
||||
|
||||
# Enable touchpad support (enabled default in most desktopManager).
|
||||
# services.xserver.libinput.enable = true;
|
||||
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.autumn = {
|
||||
isNormalUser = true;
|
||||
description = "autumn";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
};
|
||||
|
||||
# Install firefox.
|
||||
programs = {
|
||||
firefox.enable = true;
|
||||
steam.enable = true;
|
||||
gamemode.enable = true;
|
||||
};
|
||||
# Allow unfree packages
|
||||
|
||||
@@ -100,31 +63,6 @@
|
||||
download-buffer-size = 5245880000;
|
||||
};
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
# started in user sessions.
|
||||
# programs.mtr.enable = true;
|
||||
# programs.gnupg.agent = {
|
||||
# enable = true;
|
||||
# enableSSHSupport = true;
|
||||
# };
|
||||
|
||||
# List services that you want to enable:
|
||||
|
||||
# Enable the OpenSSH daemon.
|
||||
# services.openssh.enable = true;
|
||||
|
||||
# Open ports in the firewall.
|
||||
# networking.firewall.allowedTCPPorts = [ ... ];
|
||||
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||
# Or disable the firewall altogether.
|
||||
# networking.firewall.enable = false;
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
# settings for stateful data, like file locations and database versions
|
||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||
# this value at the release version of the first install of this system.
|
||||
# Before changing this value read the documentation for this option
|
||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||
system.stateVersion = "25.05"; # Did you read the comment?
|
||||
|
||||
}
|
||||
|
||||
12
system/packages/sddm/sddm.nix
Normal file
12
system/packages/sddm/sddm.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{config, pkgs, ...}:
|
||||
|
||||
{
|
||||
services.displayManager.sddm = {
|
||||
enable = true;
|
||||
wayland.enable = true;
|
||||
theme = "astronaut";
|
||||
};
|
||||
environment.systemPackages = with pkgs;[
|
||||
sddm-astronaut
|
||||
];
|
||||
}
|
||||
@@ -8,46 +8,23 @@
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
|
||||
#system configs
|
||||
../defaults/locale.nix
|
||||
../defaults/boot.nix
|
||||
../defaults/services.nix
|
||||
../defaults/users.nix
|
||||
|
||||
#system packages
|
||||
../packages/sddm/sddm.nix
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
|
||||
networking.hostName = "yukigekko"; # Define your hostname.
|
||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
|
||||
# Configure network proxy if necessary
|
||||
# networking.proxy.default = "http://user:password@proxy:port/";
|
||||
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
||||
|
||||
# Enable networking
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "${timezone}";
|
||||
|
||||
# Select internationalisation properties.
|
||||
i18n.defaultLocale = "${locale}";
|
||||
|
||||
i18n.extraLocaleSettings = {
|
||||
LC_ADDRESS = "${locale}";
|
||||
LC_IDENTIFICATION = "${locale}";
|
||||
LC_MEASUREMENT = "${locale}";
|
||||
LC_MONETARY = "${locale}";
|
||||
LC_NAME = "${locale}";
|
||||
LC_NUMERIC = "${locale}";
|
||||
LC_PAPER = "${locale}";
|
||||
LC_TELEPHONE = "${locale}";
|
||||
LC_TIME = "${locale}";
|
||||
};
|
||||
|
||||
|
||||
services.displayManager.sddm.wayland.enable = true;
|
||||
services.displayManager.sddm.enable = true;
|
||||
programs.river.enable = true;
|
||||
services.flatpak.enable = true;
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
config.common.default = "*";
|
||||
@@ -55,27 +32,7 @@
|
||||
pkgs.kdePackages.xdg-desktop-portal-kde
|
||||
];
|
||||
};
|
||||
services.printing.enable = true;
|
||||
services.pulseaudio.enable = false;
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
};
|
||||
|
||||
# Enable touchpad support (enabled default in most desktopManager).
|
||||
# services.xserver.libinput.enable = true;
|
||||
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.autumn= {
|
||||
isNormalUser = true;
|
||||
description = "Autumn";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
};
|
||||
|
||||
# Install firefox.
|
||||
programs.firefox.enable = true;
|
||||
programs.bash.interactiveShellInit = "fish";
|
||||
programs.appimage.enable = true;
|
||||
@@ -117,7 +74,7 @@
|
||||
];
|
||||
|
||||
nix.settings.experimental-features = ["nix-command" "flakes"];
|
||||
nix.settings.download-buffer-size = 5242880000;
|
||||
nix.settings.download-buffer-size = 5242880000;
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
# started in user sessions.
|
||||
@@ -131,7 +88,6 @@
|
||||
# List services that you want to enable:
|
||||
|
||||
# Enable the OpenSSH daemon.
|
||||
services.openssh.enable = true;
|
||||
|
||||
system.stateVersion = "25.05";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user