diff options
author | Freya Murphy <freya@freyacat.org> | 2024-11-03 13:28:10 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-11-03 13:28:10 -0500 |
commit | 1a59e2b5003f9f229394157ac4aad6fed47b3dff (patch) | |
tree | eb73a999236bd2887dc08e4889518e89f108fff0 /home/home.nix | |
parent | update bluetooth config (diff) | |
download | dotfiles-guix-1a59e2b5003f9f229394157ac4aad6fed47b3dff.tar.gz dotfiles-guix-1a59e2b5003f9f229394157ac4aad6fed47b3dff.tar.bz2 dotfiles-guix-1a59e2b5003f9f229394157ac4aad6fed47b3dff.zip |
udpate nix home configuration
Diffstat (limited to '')
-rw-r--r-- | home/home.nix | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/home/home.nix b/home/home.nix deleted file mode 100644 index 4872086..0000000 --- a/home/home.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ config, pkgs, ... }: - -{ - # Home Manager needs a bit of information about you and the paths it should - # manage. - home.username = "freya"; - home.homeDirectory = "/home/freya"; - home.stateVersion = "24.05"; # Please read the comment before changing. - - # This value will set some environment variables to allow home-manager to - # function better outside of NixOS - nixpkgs.config.allowUnfree = true; - targets.genericLinux.enable = true; - fonts.fontconfig.enable = true; - - # The home.packages option allows you to install Nix packages into your - # environment. - home.packages = with pkgs; [ - # Main packages - starship - discord - thunderbird - cider - - # Rust - rustup - gcc-unwrapped - openssl - - # Java - jdk - ]; - - # Let Home Manager install and manage itself. - programs.home-manager.enable = true; -} - |