config/users/fish/cattop/configuration.nix

152 lines
3.8 KiB
Nix
Raw Normal View History

2025-07-04 23:44:41 -07:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{
pkgs,
...
}:
2025-07-04 23:44:41 -07:00
{
imports = [
./hardware-configuration.nix
];
2025-07-04 23:44:41 -07:00
boot.loader.efi.canTouchEfiVariables = true;
2025-08-31 16:54:23 -07:00
networking.hostName = "cattop";
2025-07-04 23:44:41 -07:00
# networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
# Set your time zone.
2025-08-31 16:54:23 -07:00
Time.timeZone = "America/Los_Angeles";
2025-07-04 23:44:41 -07:00
services.xserver.enable = true;
services.displayManager.gdm.enable = true;
services.desktopManager.gnome.enable = true;
2025-08-18 18:34:01 -07:00
environment.gnome.excludePackages = (
with pkgs;
[
2025-08-31 16:54:23 -07:00
adwaita-fonts
adwaita-icon-theme
baobab
decibels
2025-08-18 18:34:01 -07:00
epiphany
2025-08-31 16:54:23 -07:00
evince
file-roller
2025-08-18 18:34:01 -07:00
geary
2025-08-31 16:54:23 -07:00
gnome-backgrounds
gnome-calculator
gnome-calendar
2025-08-18 18:34:01 -07:00
gnome-characters
2025-08-31 16:54:23 -07:00
gnome-clocks
gnome-connections
gnome-console
gnome-contacts
gnome-disk-utility
gnome-font-viewer
gnome-logs
gnome-maps
2025-08-18 18:34:01 -07:00
gnome-music
2025-08-31 16:54:23 -07:00
gnome-shell-extensions
gnome-system-monitor
gnome-screenshot
gnome-text-editor
gnome-themes-extra
2025-08-18 18:34:01 -07:00
gnome-tour
2025-08-31 16:54:23 -07:00
gnome-user-docs
gnome-weather
loupe
nautilus
orca
seahorse
simple-scan
snapshot
sushi
2025-08-18 18:34:01 -07:00
totem
2025-08-31 16:54:23 -07:00
yelp
2025-08-18 18:34:01 -07:00
]
);
2025-07-04 23:44:41 -07:00
2025-08-31 16:54:23 -07:00
services.printing.enable = true;
2025-07-04 23:44:41 -07:00
# Enable sound.
# services.pulseaudio.enable = true;
# OR
# services.pipewire = {
# enable = true;
# pulse.enable = true;
# };
# Enable touchpad support (enabled default in most desktopManager).
# services.libinput.enable = true;
users.users.fish = {
isNormalUser = true;
2025-08-30 22:14:23 -07:00
shell = pkgs.fish;
2025-08-18 18:34:01 -07:00
extraGroups = [
2025-08-31 16:54:23 -07:00
"wheel"
"dialout"
2025-08-18 18:34:01 -07:00
];
2025-07-04 23:44:41 -07:00
packages = with pkgs; [
tree
git
nh
vim
fish
];
};
2025-08-23 20:17:47 -07:00
programs.git = {
enable = true;
2025-08-30 22:14:23 -07:00
# extraConfig = {
# push = {
# autoSetupRemote = true;
# };
# };
2025-08-23 20:17:47 -07:00
};
2025-08-30 22:14:23 -07:00
2025-07-04 23:44:41 -07:00
programs.firefox.enable = true;
2025-08-23 20:17:47 -07:00
programs.neovim.enable = true;
#programs.neovim.defaultEditor.enable = true;
2025-07-04 23:44:41 -07:00
# List packages installed in system profile.
environment.systemPackages = with pkgs; [
2025-08-31 16:54:23 -07:00
vim
2025-07-04 23:44:41 -07:00
wget
];
2025-08-30 22:14:23 -07:00
programs.fish.enable = true;
2025-07-04 23:44:41 -07:00
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;
# Copy the NixOS configuration file and link it from the resulting system
# (/run/current-system/configuration.nix). This is useful in case you
# accidentally delete configuration.nix.
# system.copySystemConfiguration = true;
# This option defines the first version of NixOS you have installed on this particular machine,
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
#
# Most users should NEVER change this value after the initial install, for any reason,
# even if you've upgraded your system to a new NixOS release.
#
# This value does NOT affect the Nixpkgs version your packages and OS are pulled from,
# so changing it will NOT upgrade your system - see https://nixos.org/manual/nixos/stable/#sec-upgrading for how
# to actually do that.
#
# This value being lower than the current NixOS release does NOT mean your system is
# out of date, out of support, or vulnerable.
#
# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,
# and migrated your data accordingly.
#
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
system.stateVersion = "25.05"; # Did you read the comment?
}