mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
Move shepard flake to unstable and add cosmic-edit
This commit is contained in:
parent
64dedfd129
commit
82a492b1fd
1 changed files with 8 additions and 8 deletions
|
@ -2,18 +2,16 @@
|
|||
description = "Shepard";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/release-23.05";
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager/release-23.05";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
# nixpkgs.url = "github:NixOS/nixpkgs/release-23.05";
|
||||
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, nixos-hardware, ... }@inputs: {
|
||||
outputs = { self, nixpkgs-unstable, nixos-hardware, ... }@inputs: {
|
||||
nixosConfigurations = {
|
||||
"shepard" = nixpkgs.lib.nixosSystem {
|
||||
"shepard" = nixpkgs-unstable.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
# Import the configuration.nix we used before, so that the old configuration file can still take effect.
|
||||
# Note: /etc/nixos/configuration.nix itself is also a Nix Module, so you can import it directly here
|
||||
|
@ -57,9 +55,11 @@
|
|||
|
||||
time.timeZone = "America/Denver";
|
||||
|
||||
# Stable
|
||||
environment.systemPackages = with pkgs; [
|
||||
avahi
|
||||
cargo
|
||||
cosmic-edit
|
||||
dmidecode
|
||||
fire
|
||||
firefox
|
||||
|
@ -118,7 +118,7 @@
|
|||
|
||||
# System
|
||||
system = {
|
||||
stateVersion = "23.05";
|
||||
stateVersion = "23.11";
|
||||
autoUpgrade.enable = true;
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue