diff --git a/.config/nixos/configuration.def.nix b/.config/nixos/configuration.def.nix index 64c16aa..b52fcf7 100644 --- a/.config/nixos/configuration.def.nix +++ b/.config/nixos/configuration.def.nix @@ -2,7 +2,13 @@ { imports = [ + # Do not remove ./core.nix + + # Specific profiles for this machine + # ./profiles/lf.nix + # ./profiles/nvim.nix + # ./profiles/desktop_x.nix ]; networking.hostName = "nix"; diff --git a/.config/nixos/personal.nix b/.config/nixos/personal.nix deleted file mode 100644 index 18edf32..0000000 --- a/.config/nixos/personal.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ config, pkgs, ... }: - -{ - nixpkgs.config.allowUnfree = true; - networking.hostName = "main"; - programs.java = { enable = true; package = pkgs.javaPackages.openjfx17; }; - - # Define a user account. Don't forget to set a password with ‘passwd’. - users.users.vince = { - isNormalUser = true; - extraGroups = [ # User implicitly in "users" group - "bluetooth" - "docker" # Use docker - "networkmanager" # Able to user NetworkManager - "video" # Permission to change backlight value - "vboxusers" # Make virtualbox vms - "wheel" # Sudo priviledges - ]; - packages = with pkgs; [ - ardour # DAW - docker - gimp # Image editor - kdenlive # Video editor - mupen64plus # N64 Emulator - musescore # Music notation software - obs-studio # Screen recorder - - # Java stuff - javaPackages.openjfx19 - jdk17 - - # Unfree programs - discord - slack - spotify - zoom-us - ]; - shell = pkgs.zsh; - - # Set so when mutableUsers is set to "false", the user still has a way to login. - password = ""; - }; -} -